Last Updated: February 25, 2016
·
354
· leomao10

Remove merged local branch for git

Run this code and it will remove all the merged branch in your local machine.

git branch --merged | grep -v "\*" | xargs -n 1 git branch -d