[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 11/14] gitignore: don't ignore .scm files.
From: |
Denis 'GNUtoo' Carikli |
Subject: |
[PATCH v1 11/14] gitignore: don't ignore .scm files. |
Date: |
Fri, 19 Apr 2024 19:06:28 +0200 |
For some reason the regex being removed ends up ignoring .scm files:
if we run git add to some files in ./resources/guix/*/*.scm, we end up
with:
The following paths are ignored by one of your .gitignore files:
[...]
hint: Use -f if you really want to add them.
hint: Turn this message off by running
hint: "git config advice.addIgnoredFile false"
but if we remove '*.s[a-w]?' from .gitignore, git add works fine
without any warning.
As this gitignore entry was added by the very first commit of this
repository (commit 89517ed6b9e89321e1387ed8f534d7f080ffdf57
"libreboot!"), we don't really know why it was added (what type of
files it's supposed to match again).
But given that we plan to use .scm files extensively, it's probably
better to remove that ignore rule and find out later the reason why it
was added in the first place, and adjust the rules accordingly, than
risking to forget some important scheme files.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
---
.gitignore | 1 -
1 file changed, 1 deletion(-)
diff --git a/.gitignore b/.gitignore
index aa4f4c7..94e1e77 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,6 @@
*.date
*.hash
*.html
-*.s[a-w]?
*.sha1sum
*.vim
*feed.xml
--
2.41.0
- [PATCH v1 01/14] site: status: Add upstream software versions., (continued)
- [PATCH v1 01/14] site: status: Add upstream software versions., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 02/14] docs/install: replace Libreboot with GNUBoot, Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 06/14] scripts: misc: guix.sh: fix forgetten tab., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 07/14] scripts: misc: guix.sh: fix last version detection., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 04/14] build instructions: Mention exact package names for debootstrap., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 05/14] build instructions: debootstrap: Add Guix., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 09/14] scripts: misc: guix.sh: prevent OOM., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 03/14] docs/install: Don't officially support T60 with ATI GPUs., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 08/14] scripts: misc: guix.sh: make it pass shellcheck., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 11/14] gitignore: don't ignore .scm files.,
Denis 'GNUtoo' Carikli <=
- [PATCH v1 10/14] gitignore: sort rules., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 13/14] Makefile.am: Document commands from site/docs/build/index.md., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 14/14] Build bucts and patched flashrom for I945 ThinkPads with Guix., Denis 'GNUtoo' Carikli, 2024/04/19
- [PATCH v1 12/14] Add topdir ./configure., Denis 'GNUtoo' Carikli, 2024/04/19
- Re: Guix integration and various other patches., Leah Rowe, 2024/04/19
- Re: Guix integration and various other patches., Adrien 'neox' Bourmault, 2024/04/20
- Re: Guix integration and various other patches., Adrien 'neox' Bourmault, 2024/04/20