Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Commit

Permalink
add simple gitignore
Browse files Browse the repository at this point in the history
My natural Software Engineer OCPD is triggered when ``git status`` reveals *.pyc
and __pycache__ files. Add a simple gitignore file to ignore them. This also has
the side-benefit for non-OCPD Software Engineers that they're protected from
fat-fingering compiled bytecode into commits :).
  • Loading branch information
rjw57 committed Jul 1, 2015
1 parent 16b15cc commit 92a4459
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Python build files
__pycache__
*.pyc
*.egg-info

0 comments on commit 92a4459

Please sign in to comment.