From b2468103778140c55e8de30e5695837d7c358480 Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Wed, 11 Nov 2020 01:52:06 -0500 Subject: [PATCH] .gitignore: ignore *.tmp files. This fixes the problem where, while running `redo version-info.sh`, the repo would always show up as dirty, because redo creates a temp file named *.tmp. This caused the version code to always have a -dirty tag, but not when you run version.sh by hand. Signed-off-by: Avery Pennarun --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5ea6b5a28..5d2bdc181 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Binaries for programs and plugins *~ +*.tmp *.exe *.dll *.so