Created
December 2, 2016 10:00
-
-
Save jschmid/b383853e87c150b95cc9813aa10668a8 to your computer and use it in GitHub Desktop.
Git prune branches not on origin anymore
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 fetch -p && for branch in `git branch -vv | grep ': gone]' | awk '{print $1}'`; do git branch -D $branch; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment