Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 0884E431FD0 for ; Sun, 25 Sep 2011 18:06:10 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id o6FDcTaoIBUf for ; Sun, 25 Sep 2011 18:06:09 -0700 (PDT) Received: from mail.cryptobitch.de (cryptobitch.de [88.198.7.68]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 6F861431FB6 for ; Sun, 25 Sep 2011 18:06:09 -0700 (PDT) Received: from mail.jade-hamburg.de (unknown [85.183.11.228]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.cryptobitch.de (Postfix) with ESMTPSA id 81527505B24 for ; Mon, 26 Sep 2011 03:06:06 +0200 (CEST) Received: by mail.jade-hamburg.de (Postfix, from userid 401) id E57CDDF2A1; Mon, 26 Sep 2011 03:06:05 +0200 (CEST) Received: from thinkbox.jade-hamburg.de (unknown [10.1.1.109]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: teythoon) by mail.jade-hamburg.de (Postfix) with ESMTPSA id 275C2DF28B; Mon, 26 Sep 2011 03:06:00 +0200 (CEST) Received: from teythoon by thinkbox.jade-hamburg.de with local (Exim 4.76) (envelope-from ) id 1R7zdv-0007O4-SQ; Mon, 26 Sep 2011 03:05:59 +0200 From: Justus Winter <4winter@informatik.uni-hamburg.de> To: notmuch@notmuchmail.org Subject: [PATCH 1/9] python: add a .gitignore file and refine the toplevel one Date: Mon, 26 Sep 2011 03:05:29 +0200 Message-Id: <1316999137-28257-1-git-send-email-4winter@informatik.uni-hamburg.de> X-Mailer: git-send-email 1.7.6.3 X-Mailman-Approved-At: Mon, 26 Sep 2011 09:17:56 -0700 Cc: Justus Winter <4winter@informatik.uni-hamburg.de> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Sep 2011 01:06:10 -0000 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 deletions(-) create mode 100644 bindings/python/.gitignore diff --git a/.gitignore b/.gitignore index 02ab004..9468e30 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 0000000..82e4918 --- /dev/null +++ b/bindings/python/.gitignore @@ -0,0 +1,2 @@ +*.py[co] +/build -- 1.7.6.3