-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Gavi Rawson edited this page Sep 25, 2016
·
2 revisions
-
Add all changed files:
git add <file names>
-
Commit the changed files:
git commit -m <commit name>
-
Check if your local version of master is up to date with the remote version of master:
git fetch -av
-
If your local master is not up to date, rebase to get all the changes since your last pull:
git rebase origin master
-
If while rebasing a merge conflict comes up, fix it, then continue the rebase:
git rebase --continue
-
When done rebasing, push your changes to master
git push origin master