From 33a2edba55ef60a14b41fafc1bfe7467e548a443 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Mon, 27 Jun 2022 19:15:00 +0200 Subject: gitignore: fix Emacs temporary files Without that change, Emacs temporary files appear as untracked files when running git status: Untracked files: (use "git add ..." 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 --- .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 -- cgit v1.2.3