From 6d1fb97afdebbcd38117c4b27cb3241244ffd636 Mon Sep 17 00:00:00 2001 From: Rudi Schlatte Date: Mon, 24 Feb 2025 18:04:46 +0100 Subject: [PATCH] Add ".jj" to vc-directory-exclusion-list * lisp/vc/vc-hooks.el (vc-directory-exclusion-list): Add ".jj", a directory used by the jujutsu version control system. (Bug#76524) (cherry picked from commit bca04d3c580e3bd3d787274973d33ce95098d423) --- lisp/vc/vc-hooks.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index 49434ed22fe..d6dcf9d421b 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -123,7 +123,8 @@ An empty list disables VC altogether." ;; The Arch back end will be retrieved and fixed if it is ever required. (defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS" ".src" ".svn" ".git" ".hg" ".bzr" - "_MTN" "_darcs" "{arch}") + "_MTN" "_darcs" "{arch}" ".repo" + ".jj") "List of directory names to be ignored when walking directory trees." :type '(repeat string) :group 'vc) -- 2.39.5