Skip to content

Instantly share code, notes, and snippets.

@cgdangelo
Created April 4, 2012 18:27
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 cgdangelo/2304514 to your computer and use it in GitHub Desktop.
Save cgdangelo/2304514 to your computer and use it in GitHub Desktop.
Interactive git-clean
#!/bin/sh
GC_OPTS=$@
for item in `git clean $@ | grep -v git-iclean | grep "Would remove" | cut -d' ' -f 3`; do
rm -ir $item
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment