From: Rudi Schlatte Date: Mon, 24 Feb 2025 17:04:46 +0000 (+0100) Subject: Add ".jj" to vc-directory-exclusion-list X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6d1fb97afdebbcd38117c4b27cb3241244ffd636;p=emacs.git 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) --- 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)