From: Justus Winter <4winter@informatik.uni-hamburg.de>
Date: Mon, 26 Sep 2011 01:05:29 +0000 (+0200)
Subject: python: add a .gitignore file and refine the toplevel one
X-Git-Tag: 0.9~42
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=dc8a1745e1890853ae26e3d7425c1156556a6136;p=notmuch-old

python: add a .gitignore file and refine the toplevel one

The line 'notmuch' in the toplevel .gitignore file is to broad
and matches bindings/python/notmuch making it cumbersome to
git-add files within that directory.

Refine the toplevel file to only match the generated notmuch
executable and add a more specialized .gitignore file to the
python directory.

Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
---

diff --git a/.gitignore b/.gitignore
index 02ab0044..9468e30e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,7 +4,7 @@ TAGS
 tags
 *cscope*
 .deps
-notmuch
+/notmuch
 notmuch.sym
 notmuch-shared
 notmuch.1.gz
diff --git a/bindings/python/.gitignore b/bindings/python/.gitignore
new file mode 100644
index 00000000..82e49188
--- /dev/null
+++ b/bindings/python/.gitignore
@@ -0,0 +1,2 @@
+*.py[co]
+/build