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
| #!/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 |
NewerOlder