From 254d04aa3180eb8b8daf7b7ff25f010cd69b4e7d Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Wed, 28 May 2008 21:25:15 -0700 Subject: 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 --- .gitignore | 5 +++-- 1 file 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 -- cgit v1.2.3