Skip to content

Instantly share code, notes, and snippets.

@ianmariano
Last active December 18, 2015 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ianmariano/5807214 to your computer and use it in GitHub Desktop.
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
#!/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