From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id uCaXL000H18yIAAA0tVLHw (envelope-from ) for ; Mon, 27 Jul 2020 20:08:45 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id +NhYK000H1+7egAAbx9fmQ (envelope-from ) for ; Mon, 27 Jul 2020 20:08:45 +0000 Received: from mail.notmuchmail.org (nmbug.tethera.net [144.217.243.247]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (2048 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 48CB2940224 for ; Mon, 27 Jul 2020 20:08:44 +0000 (UTC) Received: from [144.217.243.247] (localhost [127.0.0.1]) by mail.notmuchmail.org (Postfix) with ESMTP id D64F827D35; Mon, 27 Jul 2020 16:08:37 -0400 (EDT) Received: from mail.hostpark.net (mail.hostpark.net [212.243.197.30]) by mail.notmuchmail.org (Postfix) with ESMTPS id 5D4C61FA17 for ; Mon, 27 Jul 2020 16:08:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mail.hostpark.net (Postfix) with ESMTP id 6BE1E160C9; Mon, 27 Jul 2020 22:08:33 +0200 (CEST) X-Virus-Scanned: by Hostpark/NetZone Mailprotection at hostpark.net Received: from mail.hostpark.net ([127.0.0.1]) by localhost (mail1.hostpark.net [127.0.0.1]) (amavisd-new, port 10124) with ESMTP id 1RwxX7k0vWhs; Mon, 27 Jul 2020 22:08:33 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.hostpark.net (Postfix) with ESMTPSA id 4408915FD0; Mon, 27 Jul 2020 22:08:33 +0200 (CEST) From: Jonas Bernoulli To: Tomi Ollila , notmuch@notmuchmail.org Subject: Re: [PATCH 1/3] gitignore: Ignore generated sphinx.config In-Reply-To: References: <20200724180924.21944-1-jonas@bernoul.li> <20200726212610.15893-1-jonas@bernoul.li> <20200726212610.15893-2-jonas@bernoul.li> Date: Mon, 27 Jul 2020 22:08:32 +0200 Message-ID: <87eeow201r.fsf@bernoul.li> MIME-Version: 1.0 Message-ID-Hash: 3VRDV7EVVHIMW44XJ6PYIBZLADK7LNL2 X-Message-ID-Hash: 3VRDV7EVVHIMW44XJ6PYIBZLADK7LNL2 X-MailFrom: jonas@bernoul.li X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-notmuch.notmuchmail.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.1 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of notmuch-bounces@notmuchmail.org designates 144.217.243.247 as permitted sender) smtp.mailfrom=notmuch-bounces@notmuchmail.org X-Spam-Score: -0.97 X-TUID: Zei6OK0ZS2TE Tomi Ollila writes: > On Sun, Jul 26 2020, Jonas Bernoulli wrote: > >> --- >> .gitignore | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/.gitignore b/.gitignore >> index 1c8705ec..8f3ebec0 100644 >> --- a/.gitignore >> +++ b/.gitignore >> @@ -17,3 +17,4 @@ tags >> /.stamps >> *.stamp >> /bindings/python-cffi/build/ >> +/sphinx.config > > This could have been listed after sh.config... I was unable to detect any order in the existing data so I placed it at the end. I'd be happy to place it somewhere else but I think the existing data should just be sorted consistently. If that happens before or after this commit doesn't really matter. Jonas