Created
May 2, 2016 20:07
-
-
Save wturnerharris/ba7571ce95a63ca93109844dffe0848c to your computer and use it in GitHub Desktop.
Remove all your local git branches but keep master
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# from within git repo | |
git checkout master && git branch | grep -v "master" | xargs git branch -D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment