Last active
December 18, 2015 15:49
-
-
Save ianmariano/5807214 to your computer and use it in GitHub Desktop.
Tired of pruning all your git remotes by hand? Put this on your path and chmod a+x it. Then, in your repo: $ git remote-prune-all
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/bash | |
all=`git remote` | |
echo "Pruning all remotes" | |
for r in $all; do | |
echo -n "$r... " | |
git remote prune $r && echo "done." | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment