python-scripts/01_remove_all_pyc.md
Michael Herman f467a62416 new script
2014-04-21 07:55:09 -06:00

258 B

I always forget this ...

To recursively remove all those pesky .pyc files from a git repo, run this command:

$ find . -name "*.pyc" -exec git rm -f {} \;

Then make sure to add a .gitignore and the root of the repo and add the line: *.pyc