Without that change, Emacs temporary files appear as untracked files
when running git status:
Untracked files:
(use "git add <file>..." to include in what will be committed)
scripts/#guix.scm#
This is because a dot('.') will not match "any character" but will
instead match for dots in files names.
Signed-off-by: Denis 'GNUtoo' Carikli <[email protected]>
---
.gitignore | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
index 3d9bbb6..9bfa7dc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -34,7 +34,7 @@ valgrind.*.log
/tools/nv_data-md5
# Text editors
-\#.*\#
+\#*\#
*~
Makefile.in
--
2.37.1
_______________________________________________
Replicant mailing list
[email protected]
https://lists.osuosl.org/mailman/listinfo/replicant