Variable: vc-directory-exclusion-list
vc-directory-exclusion-list is a customizable variable defined in
vc-hooks.el.gz.
Value
("SCCS" "RCS" "CVS" "MCVS" ".src" ".svn" ".git" ".hg" ".bzr" "_MTN"
"_darcs" "{arch}" ".repo" ".jj")
Documentation
List of directory names to be ignored when walking directory trees.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-hooks.el.gz
;; Note: we don't actually have a darcs back end yet. Also, Arch and
;; Repo are unsupported, and the Meta-CVS back end has been removed.
;; 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}" ".repo"
".jj")
"List of directory names to be ignored when walking directory trees."
:type '(repeat string)
:group 'vc
:version "31.1")