Created
June 23, 2018 18:59
-
-
Save abdolrhman/3f8990f854030b366217a988c9750bde to your computer and use it in GitHub Desktop.
git rebase
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
After changes committed to your branch, checkout master and pull to get the changes from the repo: | |
git checkout master | |
git pull origin master | |
Then checkout your branch and rebase your changes on master : | |
git checkout RB | |
git rebase master | |
or last two commands in one line: | |
git rebase master RB |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment