Last active
October 14, 2015 08:25
-
-
Save linkesch/d8ee1828b55c253cb520 to your computer and use it in GitHub Desktop.
Delete local and remote GIT branch
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
# Delete local branch | |
git branch -D <branch> | |
# Delete remote branch | |
git push origin --delete <branch> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment