From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1687982320; bh=GF6zG12r9ENlatl4XAAGjPeedsonoVNt/hOSjInC3sE=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=duuKNawj2mcBObX0VD+J9BLTVcDDHYcUEslTvqAm6PX77NMkkUq5UlptWkT4y3dEw SolN9XWc3jggDpoBax17KfkEX360UngTpIK4jNPRQ4tzAm6467xW6nIxPhFAgEPKpy Jzw2E5Z1nRrMx5BY7D3lROVsaVEmsoccac5No3JEWuzg8rsDKMB5JTsCQTDSGrroZ3 B4OPAXxlyHhUN1C92kb/FFaYnwa1AwKYn6lPMJa0tAWvskNMTxcfstAtrv5TzIg9Iu 0JN24E4Ck99muPU0/6afGY8dEyQNEQhmfUL9qkcOMiFUPEh2QbUMeiTUjyrHk4EVZR AKhG0deuoKv0w== Received: from integral2.. (unknown [68.183.184.174]) by gnuweeb.org (Postfix) with ESMTPSA id B89632370CD; Thu, 29 Jun 2023 02:58:38 +0700 (WIB) From: Ammar Faizi To: GNU/Weeb Mailing List Cc: Ammar Faizi , Michael William Jonathan , Nicholas Rosenberg , GNU/Weeb Facebook Team , VNLX Kernel Department Subject: [PATCH fb v1 2/3] fb: .gitignore: Ignore *.patch files Date: Thu, 29 Jun 2023 02:58:27 +0700 Message-Id: <20230628195828.1657850-3-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230628195828.1657850-1-ammarfaizi2@gnuweeb.org> References: <20230628195828.1657850-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: I often generate patch files in the same directory with the project directory. I don't want to commit them. Add '*.patch' to .gitignore to avoid that. Signed-off-by: Ammar Faizi --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index da9f1ac047357f8a..5c7d1aaaf7db1515 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ *.tmp *.log -/tmp.html \ No newline at end of file +*.patch +/tmp.html -- Ammar Faizi