Skip to content

Instantly share code, notes, and snippets.

@jvanderwee
Created November 16, 2016 14:09
Show Gist options
  • Save jvanderwee/2c45549966d17f75543908c3c69c93aa to your computer and use it in GitHub Desktop.
Save jvanderwee/2c45549966d17f75543908c3c69c93aa to your computer and use it in GitHub Desktop.
Delete merged remote branches
git branch -r --merged | grep -v master | sed 's/origin\///' | xargs -n 1 git push --delete origin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment