Created
September 28, 2012 07:26
-
-
Save dmtw/3798452 to your computer and use it in GitHub Desktop.
Git workflow
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
This workflow works best for me: | |
git checkout -b develop | |
...make some changes... | |
...notice master has been updated... | |
git checkout master | |
git pull | |
...bring those changes back into develop... | |
git checkout develop | |
git rebase master | |
...make some more changes... | |
...commit them to develop... | |
...merge them into master... | |
git checkout master | |
git pull | |
git merge develop | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment