Skip to content

Instantly share code, notes, and snippets.

@ranveeraggarwal
Last active June 24, 2016 15:32
Show Gist options
  • Save ranveeraggarwal/f9c0d97b717b442e9ee1 to your computer and use it in GitHub Desktop.
Save ranveeraggarwal/f9c0d97b717b442e9ee1 to your computer and use it in GitHub Desktop.
Remove pyc's from a python project
find . -name "*.pyc" -exec git rm -f "{}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment