Skip to content

Instantly share code, notes, and snippets.

@aliaspooryorik
Created February 6, 2014 10:48
Show Gist options
  • Save aliaspooryorik/8842005 to your computer and use it in GitHub Desktop.
Save aliaspooryorik/8842005 to your computer and use it in GitHub Desktop.
Delete local branches that have been merged into master
git branch --merged | grep -v '^* master$' | grep -v '^ master$' | xargs git branch -d
@aliaspooryorik
Copy link
Author

git branch --merged | grep -v "*" | xargs -n 1 git branch -d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment