Adds documentation for git rebase and git fetch

This commit is contained in:
Seth Woodworth
2015-12-29 17:54:20 -05:00
parent 1f74ef276d
commit 1fa146ee30
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# git rebase
> Apply local commits on top of another branch's history
- Rebase your local branch with the latest changes in master
`git rebase -i master` (Then follow the directions in the terminal for merge conflicts)