Skip to content

Instantly share code, notes, and snippets.

@kana
Created November 11, 2010 15:42
Show Gist options
  • Save kana/672651 to your computer and use it in GitHub Desktop.
Save kana/672651 to your computer and use it in GitHub Desktop.
find foo bar baz -path '*blahblah*' -type f >whitelist
git filter-branch --index-filter '
git rm --quiet --cached --ignore-unmatch $(
{ git ls-files; cat /full/path/to/whitelist; } |
sort |
uniq -c |
sed -e "s/^ *//;/^2 /d;s/^. //"
)
' --prune-empty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment