Skip to content

Instantly share code, notes, and snippets.

@hedgehog
Forked from atnan/git-clean-cached.sh
Created December 5, 2011 00:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hedgehog/1431731 to your computer and use it in GitHub Desktop.
Save hedgehog/1431731 to your computer and use it in GitHub Desktop.
#!/bin/bash
cat .gitignore | egrep -v "^#|^$" | while read line; do
if [ -n "$line" ]; then
OLD_IFS=$IFS; IFS=""
for ignored_file in $( git ls-files "$line" ); do
git rm --cached "$ignored_file"
done
IFS=$OLD_IFS
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment