diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-07-26 18:44:39 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-07-26 18:44:39 +0000 |
commit | 625f71cff9f69fb0ca47aedbb69111f22186e628 (patch) | |
tree | ae1b10268077f9f911678e59206a629a9f8f11a8 /lisp/vc-hooks.el | |
parent | 108607bc25dcb8d4aac102661e18ca4c19d418c4 (diff) | |
download | emacs-625f71cff9f69fb0ca47aedbb69111f22186e628.tar.gz |
* 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.
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 15238751679..a8b6297caa2 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -62,9 +62,9 @@ interpreted as hostnames." :type 'regexp :group 'vc) -(defcustom vc-handled-backends '(RCS CVS SVN SCCS BZR HG Arch MCVS) - ;; BZR, HG, Arch and MCVS come last because they are per-tree rather - ;; than per-dir. +(defcustom vc-handled-backends '(RCS CVS SVN SCCS BZR GIT HG Arch MCVS) + ;; BZR, GIT, HG, Arch and MCVS come last because they are per-tree + ;; rather than per-dir. "List of version control backends for which VC will be used. Entries in this list will be tried in order to determine whether a file is under that sort of version control. |