-
Notifications
You must be signed in to change notification settings - Fork 15
Git Protocol
Jiunn (Leo) Siow edited this page Apr 28, 2018
·
5 revisions
git checkout -b <your-name>/<feature-name>
git push --set-upstream origin <your-name>/<feature-name>
- This call will create a new branch and switch to that branch at time of creation
git add -A
git commit -m "some commit message"
git push
- When you reach a good state and want to merge your work with our master branch, make a pull request! Go to your branch on Github and click the "New pull request" button.