Created
August 21, 2019 07:29
-
-
Save CanerPatir/d8b081f15eab9bd65dd448579cf293c5 to your computer and use it in GitHub Desktop.
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/zsh | |
| for i in */.git; | |
| do ( echo $i; cd $i/..; git pull; git fetch -p && for branch in `git branch -vv | grep ': gone]' | awk '{print $1}'`; do git branch -D $branch; done ); | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment