From dc8a1745e1890853ae26e3d7425c1156556a6136 Mon Sep 17 00:00:00 2001 From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Mon, 26 Sep 2011 03:05:29 +0200 Subject: [PATCH] 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> --- .gitignore | 2 +- bindings/python/.gitignore | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 bindings/python/.gitignore 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 -- 2.43.0