Skip to content

Instantly share code, notes, and snippets.

@kulbida
Created March 19, 2014 15:40
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 kulbida/9644418 to your computer and use it in GitHub Desktop.
Save kulbida/9644418 to your computer and use it in GitHub Desktop.
#!/bin/sh
for branch in $(git branch | grep TEXT_MATCH_PATTERN_GOES_HERE | grep -v grep)
do
git branch -d $branch
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment