Git commands - code-co-op/learning-web-development GitHub Wiki
When beginning a new piece of development in the learn-web-development repo, follow these steps
- git checkout master
- git checkout -b "name-of-my-new-branch"
- Make some changes
- git add --all
- git commit -m "message to go with commit"
- git push -u origin HEAD
References https://stackoverflow.com/a/38198351 https://github.com/isaacs/github/issues/1125