1 ;;; vc-git.el --- VC backend for the git version control system
3 ;; Copyright (C) 2006 Alexandre Julliard
5 ;; This program is free software; you can redistribute it and/or
6 ;; modify it under the terms of the GNU General Public License as
7 ;; published by the Free Software Foundation; either version 2 of
8 ;; the License, or (at your option) any later version.
10 ;; This program is distributed in the hope that it will be
11 ;; useful, but WITHOUT ANY WARRANTY; without even the implied
12 ;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13 ;; PURPOSE. See the GNU General Public License for more details.
15 ;; You should have received a copy of the GNU General Public
16 ;; License along with this program; if not, write to the Free
17 ;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 ;; This file contains a VC backend for the git version control
25 ;; To install: put this file on the load-path and add GIT to the list
26 ;; of supported backends in `vc-handled-backends'; the following line,
27 ;; placed in your ~/.emacs, will accomplish this:
29 ;; (add-to-list 'vc-handled-backends 'GIT)
32 ;; - changelog generation
33 ;; - working with revisions other than HEAD
36 (eval-when-compile (require 'cl
))
38 (defvar git-commits-coding-system
'utf-8
39 "Default coding system for git commits.")
41 (defun vc-git--run-command-string (file &rest args
)
42 "Run a git command on FILE and return its output as string."
44 (str (with-output-to-string
45 (with-current-buffer standard-output
46 (unless (eq 0 (apply #'call-process
"git" nil
'(t nil
) nil
47 (append args
(list (file-relative-name file
)))))
51 (defun vc-git--run-command (file &rest args
)
52 "Run a git command on FILE, discarding any output."
53 (let ((name (file-relative-name file
)))
54 (eq 0 (apply #'call-process
"git" nil
(get-buffer "*Messages") nil
(append args
(list name
))))))
56 (defun vc-git-registered (file)
57 "Check whether FILE is registered with git."
59 (let* ((dir (file-name-directory file
))
60 (name (file-relative-name file dir
)))
63 (eq 0 (call-process "git" nil
'(t nil
) nil
"ls-files" "-c" "-z" "--" name
)))
64 (let ((str (buffer-string)))
65 (and (> (length str
) (length name
))
66 (string= (substring str
0 (1+ (length name
))) (concat name
"\0"))))))))
68 (defun vc-git-state (file)
69 "git-specific version of `vc-state'."
70 (let ((diff (vc-git--run-command-string file
"diff-index" "-z" "HEAD" "--")))
71 (if (and diff
(string-match ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} [ADMU]\0[^\0]+\0" diff
))
75 (defun vc-git-workfile-version (file)
76 "git-specific version of `vc-workfile-version'."
77 (let ((str (with-output-to-string
78 (with-current-buffer standard-output
79 (call-process "git" nil
'(t nil
) nil
"symbolic-ref" "HEAD")))))
80 (if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str
)
84 (defun vc-git-symbolic-commit (commit)
85 "Translate COMMIT string into symbolic form.
86 Returns nil if not possible."
91 (call-process "git" nil
'(t nil
) nil
"name-rev"
92 "--name-only" "--tags"
94 (goto-char (point-min))
95 (= (forward-line 2) 1)
97 (buffer-substring-no-properties (point-min) (1- (point-max)))))))
99 (defun vc-git-previous-version (file rev
)
100 "git-specific version of `vc-previous-version'."
101 (let ((default-directory (file-name-directory (expand-file-name file
)))
102 (file (file-name-nondirectory file
)))
103 (vc-git-symbolic-commit
107 (call-process "git" nil
'(t nil
) nil
"rev-list"
109 (goto-char (point-max))
111 (zerop (forward-line -
1))
113 (buffer-substring-no-properties
115 (1- (point-max))))))))
117 (defun vc-git-next-version (file rev
)
118 "git-specific version of `vc-next-version'."
119 (let* ((default-directory (file-name-directory
120 (expand-file-name file
)))
121 (file (file-name-nondirectory file
))
126 (call-process "git" nil
'(t nil
) nil
"rev-list"
128 (goto-char (point-max))
130 (zerop (forward-line -
1))
132 (buffer-substring-no-properties
134 (1- (point-max)))))))
136 (vc-git-symbolic-commit
140 (call-process "git" nil
'(t nil
) nil
"rev-list"
142 (goto-char (point-min))
143 (search-forward current-rev nil t
)
144 (zerop (forward-line -
1))
145 (buffer-substring-no-properties
147 (progn (forward-line 1) (1- (point))))))))))
149 (defun vc-git-revert (file &optional contents-done
)
150 "Revert FILE to the version stored in the git repository."
152 (vc-git--run-command file
"update-index" "--")
153 (vc-git--run-command file
"checkout" "HEAD")))
155 (defun vc-git-checkout-model (file)
158 (defun vc-git-workfile-unchanged-p (file)
159 (let ((sha1 (vc-git--run-command-string file
"hash-object" "--"))
160 (head (vc-git--run-command-string file
"ls-tree" "-z" "HEAD" "--")))
162 (string-match "[0-7]\\{6\\} blob \\([0-9a-f]\\{40\\}\\)\t[^\0]+\0" head
)
163 (string= (car (split-string sha1
"\n")) (match-string 1 head
)))))
165 (defun vc-git-register (file &optional rev comment
)
166 "Register FILE into the git version-control system."
167 (vc-git--run-command file
"update-index" "--add" "--"))
169 (defun vc-git-print-log (file &optional buffer
)
170 (let ((name (file-relative-name file
))
171 (coding-system-for-read git-commits-coding-system
))
172 (vc-do-command buffer
'async
"git" name
"rev-list" "--pretty" "HEAD" "--")))
174 (defun vc-git-diff (file &optional rev1 rev2 buffer
)
175 (let ((name (file-relative-name file
))
176 (buf (or buffer
"*vc-diff*")))
178 (vc-do-command buf
0 "git" name
"diff-tree" "-p" rev1 rev2
"--")
179 (vc-do-command buf
0 "git" name
"diff-index" "-p" (or rev1
"HEAD") "--"))
180 ; git-diff-index doesn't set exit status like diff does
181 (if (vc-git-workfile-unchanged-p file
) 0 1)))
183 (defun vc-git-checkin (file rev comment
)
184 (let ((coding-system-for-write git-commits-coding-system
))
185 (vc-git--run-command file
"commit" "-m" comment
"--only" "--")))
187 (defun vc-git-checkout (file &optional editable rev destfile
)
189 (let ((fullname (substring
190 (vc-git--run-command-string file
"ls-files" "-z" "--full-name" "--")
192 (coding-system-for-read 'no-conversion
)
193 (coding-system-for-write 'no-conversion
))
194 (with-temp-file destfile
195 (eq 0 (call-process "git" nil t nil
"cat-file" "blob"
196 (concat (or rev
"HEAD") ":" fullname
)))))
197 (vc-git--run-command file
"checkout" (or rev
"HEAD"))))
199 (defun vc-git-annotate-command (file buf
&optional rev
)
200 ; FIXME: rev is ignored
201 (let ((name (file-relative-name file
)))
202 (call-process "git" nil buf nil
"blame" name
)))
204 (defun vc-git-annotate-time ()
205 (and (re-search-forward "[0-9a-f]+ (.* \\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\) \\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\) \\([-+0-9]+\\) +[0-9]+)" nil t
)
206 (vc-annotate-convert-time
207 (apply #'encode-time
(mapcar (lambda (match) (string-to-number (match-string match
))) '(6 5 4 3 2 1 7))))))
209 ;; Not really useful since we can't do anything with the revision yet
210 ;;(defun vc-annotate-extract-revision-at-line ()
212 ;; (move-beginning-of-line 1)
213 ;; (and (looking-at "[0-9a-f]+")
214 ;; (buffer-substring (match-beginning 0) (match-end 0)))))