From 6bddcc00669b97a81c025f2bb9d24dc27d775693 Mon Sep 17 00:00:00 2001 From: kernc Date: Thu, 19 Sep 2013 21:07:23 +0200 Subject: [PATCH] tell git to ignore compiled *.pyc files (and others) You don't commit non-source files. That's what .gitignore is for. ;) --- .gitignore | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d2d6f36 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +*.py[cod] + +# C extensions +*.so + +# Packages +*.egg +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg +lib +lib64 + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox +nosetests.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject