Created
May 8, 2014 13:32
-
-
Save btorch/f0104131f0529beb43cc to your computer and use it in GitHub Desktop.
Rebase steps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout master | |
git pull upstream master | |
git checkout branch_name | |
git rebase master | |
-- conflicts show up | |
-- fix them | |
git rebase --continue | |
-- might have to git commit here, i don't remember | |
git push origin branch_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment