From e452fc71354f6b9b818448e31b6f522cb5efa287 Mon Sep 17 00:00:00 2001 From: mhucka Date: Thu, 26 Mar 2026 21:47:23 +0000 Subject: [PATCH] Add pattern for Emacs versioned backups The addition of the pattern `*.~*~` (for Emacs versioned backups) _shouldn't_ be necessary because the file names _should_ be covered by `*~` in our `.gitignore` file, but Gemini CLI currently doesn't seem to interpret `*~` that way. So, an addition to `.geminiignore` is needed to make Gemini CLI ignore Emacs versioned backups. --- .geminiignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.geminiignore b/.geminiignore index e9d77be50..4787c9a76 100644 --- a/.geminiignore +++ b/.geminiignore @@ -7,3 +7,7 @@ # Don't ignore the Bazel config files created by configure.sh. !.bazelrc !.tf_configure.bazelrc + +# The next one (for Emacs versioned backups) _should_ be covered by *~ in our +# .gitignore, but Gemini currently doesn't seem to interpret *~ that way. +*.~*~