comparison lisp/vc-hooks.el @ 82145:f04985ac29f2

* vc-git.el: Relicense to GPLv3 or later. (vc-directory-exclusion-list, vc-handled-backends): Remove. * vc-hooks.el (vc-handled-backends): Add GIT. * vc.el (vc-directory-exclusion-list): Add .git. * vc2-xtra.texi (Customizing VC): Add GIT.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 26 Jul 2007 18:44:39 +0000
parents b98604865ea0
children 58ac5a791dfa f55f9811f5d7
comparison
equal deleted inserted replaced
82144:d334990fbd70 82145:f04985ac29f2
60 to determine the VC status in directories in which filenames are 60 to determine the VC status in directories in which filenames are
61 interpreted as hostnames." 61 interpreted as hostnames."
62 :type 'regexp 62 :type 'regexp
63 :group 'vc) 63 :group 'vc)
64 64
65 (defcustom vc-handled-backends '(RCS CVS SVN SCCS BZR HG Arch MCVS) 65 (defcustom vc-handled-backends '(RCS CVS SVN SCCS BZR GIT HG Arch MCVS)
66 ;; BZR, HG, Arch and MCVS come last because they are per-tree rather 66 ;; BZR, GIT, HG, Arch and MCVS come last because they are per-tree
67 ;; than per-dir. 67 ;; rather than per-dir.
68 "List of version control backends for which VC will be used. 68 "List of version control backends for which VC will be used.
69 Entries in this list will be tried in order to determine whether a 69 Entries in this list will be tried in order to determine whether a
70 file is under that sort of version control. 70 file is under that sort of version control.
71 Removing an entry from the list prevents VC from being activated 71 Removing an entry from the list prevents VC from being activated
72 when visiting a file managed by that backend. 72 when visiting a file managed by that backend.