-
Notifications
You must be signed in to change notification settings - Fork 0
Git commands
Barry edited this page May 14, 2019
·
1 revision
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