Created
December 19, 2013 18:26
-
-
Save fabien7337/8043859 to your computer and use it in GitHub Desktop.
Git Branch/Rebase Workflow
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 co master | |
git pull | |
git co -b new_branch_for_task | |
git add modified_files | |
git ci -m "adding new feature" | |
git fetch origin | |
git rebase origin/master | |
git co master | |
git pull | |
git rebase new_branch_for_task | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment