If you want to do some housekeeping locally and want to remove branches that have been merged, checkout master and then:
git branch --merged | grep -v "\*" | xargs -n 1 git branch -dIf you want to do some housekeeping locally and want to remove branches that have been merged, checkout master and then:
git branch --merged | grep -v "\*" | xargs -n 1 git branch -d