Created
May 11, 2016 14:41
-
-
Save drmmr763/a6efe05c25ddc0e84824b5688825d9ec to your computer and use it in GitHub Desktop.
just making sure I get rebasing
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
"remote" | |
git branch -v | |
master | |
"local" | |
git branch -v | |
* master | |
feature-a | |
feature-b | |
git checkout feature-a | |
git add file.md | |
git commit -m 'made changes' | |
# put feature-a onto master-tip | |
git rebase master | |
# still have to merge eventually right? | |
git checkout master | |
git merge feature-a (# up to date with master via rebase) | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment