Created
March 21, 2011 01:54
-
-
Save jeremyckahn/878903 to your computer and use it in GitHub Desktop.
I use this when pushing a stable release from dev.
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 master; | |
git merge dev; | |
git checkout gh-pages; | |
git merge dev; | |
git push origin dev; | |
git push origin master; | |
git push origin gh-pages; | |
git checkout dev; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment