Skip to content

Instantly share code, notes, and snippets.

@yob
Forked from schacon/gist:942899
Last active August 29, 2015 13:58
Show Gist options
  • Save yob/10012899 to your computer and use it in GitHub Desktop.
Save yob/10012899 to your computer and use it in GitHub Desktop.
Delete remote git branches that have been merged into origin/master
$ git branch -r --merged origin/master |
grep origin |
grep -v '>' |
grep -v master |
xargs -L1 |
cut -d "/" -f 2 |
xargs git push origin --delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment