Skip to content

Instantly share code, notes, and snippets.

@theophoric
Created June 27, 2014 18:47
Show Gist options
  • Save theophoric/9cdf706fcf8da3d4440d to your computer and use it in GitHub Desktop.
Save theophoric/9cdf706fcf8da3d4440d to your computer and use it in GitHub Desktop.
delete all local branches that have been merged with 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