Last active
March 11, 2016 01:00
-
-
Save noherczeg/a94923392b322d6c50fe to your computer and use it in GitHub Desktop.
Rebasing in Git
This file contains hidden or 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 feature_branch | |
| git rebase master | |
| git checkout master | |
| git merge --squash feature_branch | |
| # ------------------- | |
| git checkout feature/foo | |
| git pull --all | |
| git rebase develop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment