Last active
September 6, 2018 08:45
-
-
Save alexbartsch/c07921fcc8d5d9e592f0291b302bc37b to your computer and use it in GitHub Desktop.
Delete old local branches
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
git branch -vv | grep 'origin/.*: gone]' | awk '{print $1}' | xargs git branch -d | |
# for german cli use | |
git branch -vv | grep 'origin/.*: entfernt]' | awk '{print $1}' | xargs git branch -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment