You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-vcs/git/files/50git-gentoo.el

14 lines
472 B

;;; dev-vcs/git site-lisp configuration
(add-to-list 'load-path "@SITELISP@")
(autoload 'git-status "git" "Entry point into git-status mode." t)
;;(autoload 'git-blame-mode "git-blame"
;; "Minor mode for incremental blame for Git." t)
;; GNU Emacs >=22.2 already includes vc-git.el.
;; Enable the following only if Emacs has no GIT support.
(unless (fboundp 'vc-git-registered)
(add-to-list 'load-path "@SITELISP@/compat")
(add-to-list 'vc-handled-backends 'GIT))