Skip to content

Instantly share code, notes, and snippets.

@robinvw1
Last active April 22, 2016 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinvw1/454a38f9d07fdade261822bf6c96a62a to your computer and use it in GitHub Desktop.
Save robinvw1/454a38f9d07fdade261822bf6c96a62a to your computer and use it in GitHub Desktop.
Remove local branches that are already merged into master
git branch --merged master | grep -v "\* master" | xargs -n 1 git branch -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment