Skip to content

Instantly share code, notes, and snippets.

@sionide21
Created March 21, 2013 17:13
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 sionide21/5214764 to your computer and use it in GitHub Desktop.
Save sionide21/5214764 to your computer and use it in GitHub Desktop.
PEP8 and pyflakes aliases for git
[alias]
pep8 = !git status -s | awk '{print $2}' | grep '.py' | xargs pep8
pyflakes = !git status -s | awk '{print $2}' | grep '.py' | xargs pyflakes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment