Gitでマージ済みのローカルブランチを全て削除

マージ済みのブランチを一括削除するコマンド


git branch --merged master | grep -vE '^\*|master$' | xargs -I % git branch -d %