Last active
February 24, 2016 02:59
-
-
Save MyklClason/4a4e554fe2a22cfe685e to your computer and use it in GitHub Desktop.
Delete all local branches
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
# Safer delete all | |
git branch | grep -v "master" | xargs git branch -d | |
# Delete all | |
# Source: https://coderwall.com/p/x3jmig/remove-all-your-local-git-branches-but-keep-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