From 4961106bd9405a41dfce690d17a3695421268b02 Mon Sep 17 00:00:00 2001 From: Jun Aruga Date: Fri, 10 Apr 2026 11:35:28 +0100 Subject: [PATCH] Remove .gitignore only managing Emacs editor's backup files. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit You can manage such specific settings by core.excludesFile in the user’s ~/.gitconfig according to the following Git document. https://git-scm.com/docs/gitignore > Patterns which a user wants Git to ignore in all situations (e.g., backup or > temporary files generated by the user’s editor of choice) generally go into > a file specified by core.excludesFile in the user’s ~/.gitconfig. Its > default value is $XDG_CONFIG_HOME/git/ignore. If $XDG_CONFIG_HOME is either > not set or empty, $HOME/.config/git/ignore is used instead. You can refer to .gitignore settings for editors on the following repository including Emacs and Vim settings. https://github.com/github/gitignore/tree/main/Global * https://github.com/github/gitignore/blob/main/Global/Emacs.gitignore * https://github.com/github/gitignore/blob/main/Global/Vim.gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index b25c15b..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*~