diff mbox series

[bug#47946] .gitignore: Ignore all doc/stamp-* files

Message ID 2DJDVKOI89025.30YIU87FJEKXD@wilsonb.com
State Accepted
Headers show
Series [bug#47946] .gitignore: Ignore all doc/stamp-* files | expand

Checks

Context Check Description
cbaines/comparison success View comparision
cbaines/git branch success View Git branch
cbaines/applying patch fail View Laminar job
cbaines/issue success View issue

Commit Message

iyzsong--- via Guix-patches via April 22, 2021, 6:48 a.m. UTC
I'm not sure this is the correct patch, but sometimes we get files like
doc/stamp-10 which fail to be ignored by the current `doc/stamp-[0-9]' pattern.

Comments

Leo Famulari April 24, 2021, 7:09 p.m. UTC | #1
On Thu, Apr 22, 2021 at 03:48:10PM +0900, elaexuotee--- via Guix-patches via wrote:
> I'm not sure this is the correct patch, but sometimes we get files like
> doc/stamp-10 which fail to be ignored by the current `doc/stamp-[0-9]' pattern.
> 

> From 6877a89b5d5912c14f6f4ab27f92076c5ae6af86 Mon Sep 17 00:00:00 2001
> From: "B. Wilson" <elaexuotee@wilsonb.com>
> Date: Thu, 22 Apr 2021 15:43:12 +0900
> Subject: [PATCH] .gitignore: Add doc/stamp-[0-9]*
> To: guix-patches@gnu.org
> 
> ---
>  .gitignore | 2 +-

Thanks! I filled out the commit message and pushed as
20fd0e485f22ee009c89829920861b750f794990
diff mbox series

Patch

From 6877a89b5d5912c14f6f4ab27f92076c5ae6af86 Mon Sep 17 00:00:00 2001
From: "B. Wilson" <elaexuotee@wilsonb.com>
Date: Thu, 22 Apr 2021 15:43:12 +0900
Subject: [PATCH] .gitignore: Add doc/stamp-[0-9]*
To: guix-patches@gnu.org

---
 .gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index fc8a859336..0c4c26d198 100644
--- a/.gitignore
+++ b/.gitignore
@@ -146,7 +146,7 @@  tmp
 /doc/os-config-lightweight-desktop.texi
 /nix/scripts/download
 /.version
-/doc/stamp-[0-9]
+/doc/stamp-[0-9]*
 /gnu/packages/bootstrap
 /gnu/packages/aux-files/guile-guile-launcher.o
 /guile
-- 
2.31.1