Skip to content

Instantly share code, notes, and snippets.

@dented
Created August 17, 2017 17:11
Show Gist options
  • Save dented/689e0074d179e2a28251cd1fcd5a1be1 to your computer and use it in GitHub Desktop.
Save dented/689e0074d179e2a28251cd1fcd5a1be1 to your computer and use it in GitHub Desktop.
Remove merged branches locally if merged into current branch already
git branch --merged | egrep -v "(^\*|master|dev)" | xargs git branch -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment