From d34fe3a059d872746f38614a5efcc82fafacfd6e Mon Sep 17 00:00:00 2001 From: Anoduck Date: Mon, 20 Mar 2023 05:50:59 +0000 Subject: [PATCH] Added undo-tree Added undo-tree, which is a popular package for undoing changes made to a file. It leaves hidden files everywhere, and can litter up a repository if not ignored. I have to add `*.~undo-tree~` to every `.gitignore` file in every repository I am working in. As you can guess, this gets very tedious. --- Global/Emacs.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index d40e8659..489b8928 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -47,3 +47,5 @@ flycheck_*.el # network security /network-security.data +# undo-tree +*.~undo-tree~