Created
February 24, 2014 05:28
-
-
Save mickeypash/9182419 to your computer and use it in GitHub Desktop.
Git ignore file for when I start doing python development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OS generated files | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
Icon? | |
ehthumbs.db | |
Thumbs.db | |
# R | |
####################### | |
.Rhistory | |
# Python | |
####################### | |
*.py[cod] | |
*.so | |
*.egg | |
*.egg-info | |
dist | |
build | |
eggs | |
parts | |
bin | |
var | |
sdist | |
develop-eggs | |
.installed.cfg | |
lib | |
lib64 | |
__pycache__ | |
pip-log.txt | |
.coverage | |
.tox | |
nosetests.xml | |
*.mo | |
.idea | |
test.html | |
testxml.html | |
main.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment