Skip to content

Instantly share code, notes, and snippets.

@ktchernov
Created August 21, 2017 21:45
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 ktchernov/acf705490c506636c418f0414db0df26 to your computer and use it in GitHub Desktop.
Save ktchernov/acf705490c506636c418f0414db0df26 to your computer and use it in GitHub Desktop.
Delete merged branches
#!/bin/sh
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