Created
August 19, 2013 03:29
-
-
Save jeffreyiacono/6265542 to your computer and use it in GitHub Desktop.
remove all the merged 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
for b in `git branch --merged | grep -v \*`; do git branch -D $b; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment