Variable: project-vc-backend-markers-alist

project-vc-backend-markers-alist is a variable defined in project.el.gz.

Value

((Git . ".git")
 (Hg . ".hg")
 (Bzr . ".bzr")
 (SVN . ".svn")
 (DARCS . "_darcs")
 (Fossil . ".fslckout")
 (Got . ".got"))

Documentation

Associative list assigning root markers to VC backend symbols.

See project-vc-extra-root-markers for the marker value format.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
(defvar project-vc-backend-markers-alist
  `((Git . ".git")
    (Hg . ".hg")
    (Bzr . ".bzr")
    ;; See the comment above `vc-svn-admin-directory' for why we're
    ;; duplicating the definition.
    (SVN . ,(if (and (memq system-type '(cygwin windows-nt ms-dos))
                     (getenv "SVN_ASP_DOT_NET_HACK"))
                "_svn"
              ".svn"))
    (DARCS . "_darcs")
    (Fossil . ".fslckout")
    (Got . ".got"))
  "Associative list assigning root markers to VC backend symbols.

See `project-vc-extra-root-markers' for the marker value format.")