Last active
August 29, 2015 14:01
-
-
Save jenkek/211757a48de7c58219c8 to your computer and use it in GitHub Desktop.
How to: Delete a local and remote Git branch
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
git branch -D <name-of-branch> | |
git branch -d -r origin/<name-of-branch> | |
git push origin :<name-of-branch> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment