Skip to content

Instantly share code, notes, and snippets.

@hernantz
Created April 22, 2015 16:32
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 hernantz/115c7d119e39d7a35b13 to your computer and use it in GitHub Desktop.
Save hernantz/115c7d119e39d7a35b13 to your computer and use it in GitHub Desktop.
Delete pyc files git hook
$ cat ~/path/to/.git/hooks/post-checkout
#!/bin/bash
echo "Cleaning pyc"
find . -iname '*.pyc' -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment