summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorDavid Aguilar <davvid@gmail.com>2008-05-28 21:25:15 -0700
committerDavid Aguilar <davvid@gmail.com>2008-05-28 21:25:15 -0700
commit254d04aa3180eb8b8daf7b7ff25f010cd69b4e7d (patch)
tree3987e79bcf26cbfb4f0653d41e57ce58acb658a3 /.gitignore
parent27ceafbb3f74b4677d5bae6c7ea031de07c6cfad (diff)
downloadgitpython-254d04aa3180eb8b8daf7b7ff25f010cd69b4e7d.tar.gz
gitignore: ignore eggs, .pyo's and /build
This commit sets up .gitignore so that it properly ignores both .pyo and .pyc files. The egg path was updated so that it is prepended with a "/". "/build" was added to the list of ignored paths since it is customary for setuptools to use that directory for builds. Signed-off-by: David Aguilar <davvid@gmail.com>
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore5
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 95eef648..f6f25471 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
-*.pyc
-lib/GitPython.egg-info
+*.py[co]
+/lib/GitPython.egg-info
+/build