-
-
Save nunosilva800/b4803ba508fc9fec7e29 to your computer and use it in GitHub Desktop.
Delete remote branches merged into master
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git remote prune origin | | |
git branch -r --merged origin/master | | |
grep origin | | |
grep -v '>' | | |
grep -v master | | |
xargs -L1 | | |
cut -d"/" -f2- | | |
xargs git push origin --delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
updated with suggestions in https://gist.github.com/schacon/942899