Created
December 11, 2012 15:24
-
-
Save floydpink/4259309 to your computer and use it in GitHub Desktop.
Create and delete remote branches
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
| # create new remote branch on push | |
| git push origin mybranch | |
| # delete existing remote branch on push | |
| git push origin :mybranch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment