git supprimer toutes les branches fusionnées

# Add this to your alias in .bashrc or .zshrc
# then run git-removed-merged-branches

alias git-removed-merged-branches="git branch --merged | egrep -v '(^\*|master|dev)' | xargs git branch -d"
Mo Lucas