Created
December 13, 2010 17:56
-
-
Save nickfloyd/739316 to your computer and use it in GitHub Desktop.
To delete local and remote branches
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
-delete the remote | |
>> git push [remote] :[branch] | |
-delete the local | |
>> git branch -d [branch] | |
ex. | |
git push origin :dev1 | |
git branch -d dev1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment