Just wanted to thank Parker Cameron for putting 95% of this together. We will keep adding to this file as need be. Any suggestions email us: [email protected]
~ The PointStart Crew
###Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/(User Name)/(Name of Repo).git
git push -u origin master
git remote add origin https://github.com/zrosenbauer/IOBrewWebPage.git
git push -u origin master
$ git clone
$ git branch (YourBranchName)
$ git checkout (YourBranchName)
$ git add --all
$ git commit -m 'Commit message'
$ git push origin (YourBranchName)
$ git checkout master
$ git branch -d (YourBranchName)
$ git checkout -b (YourBranchName)
$ git checkout master
$ git merge (YourBranchName)
Make sure to resolve any conflicts
$ git push origin master
$ git push origin (YourBranchName)
$ git push origin (YourBranchName)
What about git pull?