commit 0ad56883868c76e20f0b92b5c5445352cf7cfb46 Author: Isis Lovecruft isis@torproject.org Date: Thu Jul 4 22:32:13 2013 +0000
Add standard Python exclusions to the .gitignore. --- .gitignore | 50 +++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 43 insertions(+), 7 deletions(-)
diff --git a/.gitignore b/.gitignore index 27a404b..e74a354 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,49 @@ +# Python binary and object files +*.py[cod] + +# C extensions +*.so + +# Packages +*.egg +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg +lib +lib64 +MANIFEST + +# Installer logs +pip-log.txt +installed-files.txt + +# Unit test / coverage reports +.coverage +.tox +nosetests.xml + +# Translations +*.mo + # Editor stuff #* .#* *~
-# Python stuff -*.pyc -*.pyo +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# PyCharm +.idea/*
-# / -/build -/dist -/MANIFEST +# etags/ctags +TAGS
tor-commits@lists.torproject.org