Created
September 19, 2014 14:53
-
-
Save majorvin/9884c817dde2116f0dd2 to your computer and use it in GitHub Desktop.
Delete all local 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 all merged local branch | |
git branch --merged | grep -v \* | xargs git branch -D | |
# Delete all local branches | |
git branch | grep -v \* | xargs git branch -D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment