From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55788) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d6DxW-000898-MS for guix-patches@gnu.org; Thu, 04 May 2017 06:26:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d6DxT-0007Dg-Dj for guix-patches@gnu.org; Thu, 04 May 2017 06:26:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55400) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d6DxT-0007DT-A7 for guix-patches@gnu.org; Thu, 04 May 2017 06:26:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d6DxT-00006W-4C for guix-patches@gnu.org; Thu, 04 May 2017 06:26:03 -0400 Subject: bug#26774: gitignore: Add emacs created files Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55510) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d6Dwz-0007t6-Ia for guix-patches@gnu.org; Thu, 04 May 2017 06:25:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d6Dww-0006VV-Ay for guix-patches@gnu.org; Thu, 04 May 2017 06:25:33 -0400 Received: from 93-95-228-241.1984.is ([93.95.228.241]:58676 helo=sharknado9001.pragmatique.xyz) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d6Dwv-0006Tm-VW for guix-patches@gnu.org; Thu, 04 May 2017 06:25:30 -0400 Received: by sharknado9001.pragmatique.xyz (OpenSMTPD) with ESMTPSA id 10257248 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Thu, 4 May 2017 10:25:18 +0000 (UTC) Date: Thu, 4 May 2017 10:25:26 +0000 From: ng0 Message-ID: <20170504102526.mhaocregqxmyzpe5@abyayala> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="2tfq3keqlcm23olw" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26774@debbugs.gnu.org --2tfq3keqlcm23olw Content-Type: text/plain; charset=utf-8 Content-Disposition: inline As a proposal for inclusion, this ignores files with the name scheme #*#, like they are created by emacs in place when you have set no global folder for such files. -- https://pragmatique.xyz PGP: https://people.pragmatique.xyz/ng0/ --2tfq3keqlcm23olw Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0002-.gitignore-Add-to-ignored-files.patch" Content-Transfer-Encoding: quoted-printable =46rom 4b3d9eb4e4ca471e6a826994ad73ce378e5051ac Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Wed, 3 May 2017 23:36:17 +0000 Subject: [PATCH 2/2] .gitignore: Add '#*#' to ignored files. * .gitignore: Add entry for the above file which is created by editors. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1fc22d7e9..f9dda0f99 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +\#*\# *.eps *.go *.log --=20 2.12.2 --2tfq3keqlcm23olw--