Created
May 12, 2020 16:54
-
-
Save ericdouglas/9f1ce4fbd02bbbfbe138179b05be9fec to your computer and use it in GitHub Desktop.
Remove all your local git branches but keep master
This file contains 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
git branch | grep -v "master" | xargs git branch -D | |
# src: https://coderwall.com/p/x3jmig/remove-all-your-local-git-branches-but-keep-master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment