Skip to content

Instantly share code, notes, and snippets.

@julioolvr
Created October 25, 2012 12:34
Show Gist options
  • Save julioolvr/3952328 to your computer and use it in GitHub Desktop.
Save julioolvr/3952328 to your computer and use it in GitHub Desktop.
GIT - Delete branches merged on master
git branch --merged master | grep -v 'master$' | xargs git branch -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment