Remove multiple remote branches with git
2014-09-15
If you want to delete a remote git branch then you can do so using the following command.
% git push origin :BRANCH-NAME
However if you cleanup a repository and have multiple remote branches you want to remove then you could do something like this:
% git branch -r | awk -F/ '/\/SOME-PREFIX/{print $2}' | xargs -I {} git push origin :{}
This will delete all remote branches starting with SOME-PREFIX
.