Created
February 6, 2014 10:48
-
-
Save aliaspooryorik/8842005 to your computer and use it in GitHub Desktop.
Delete local branches that have been merged into master
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
| git branch --merged | grep -v '^* master$' | grep -v '^ master$' | xargs git branch -d |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
git branch --merged | grep -v "*" | xargs -n 1 git branch -d