Created
January 16, 2013 20:41
-
-
Save aesnyder/4550770 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
BRANCH=`git rev-parse --abbrev-ref HEAD` | |
echo Pushing $BRANCH to origin/$BRANCH and and origin/gh-pages | |
git push origin $BRANCH | |
git push origin $BRANCH:gh-pages | |
echo Pushed $BRANCH to origin/$BRANCH and and origin/gh-pages |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment