2017-07-27 Gitでマージ済みブランチを一括削除 git git checkout master && git branch --merged | grep -v '*' | xargs -I % git branch -d % リモートは削除されないから安心!