Allow backends to display backend specific information in
[bpt/emacs.git] / lisp / vc-git.el
CommitLineData
fff4a046
DN
1;;; vc-git.el --- VC backend for the git version control system
2
409cc4a3 3;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
fff4a046 4
8b38ce20 5;; Author: Alexandre Julliard <julliard@winehq.org>
fff4a046
DN
6;; Keywords: tools
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
625f71cf 12;; the Free Software Foundation; either version 3, or (at your option)
fff4a046
DN
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23;; Boston, MA 02110-1301, USA.
24
25;;; Commentary:
26
27;; This file contains a VC backend for the git version control
28;; system.
29;;
30
31;;; Installation:
32
4211679b 33;; To install: put this file on the load-path and add Git to the list
fff4a046
DN
34;; of supported backends in `vc-handled-backends'; the following line,
35;; placed in your ~/.emacs, will accomplish this:
36;;
4211679b 37;; (add-to-list 'vc-handled-backends 'Git)
fff4a046
DN
38
39;;; Todo:
53cc90ab
DN
40;; - check if more functions could use vc-git-command instead
41;; of start-process.
fff4a046 42;; - changelog generation
53cc90ab
DN
43
44;; Implement the rest of the vc interface. See the comment at the
45;; beginning of vc.el. The current status is:
7546c767 46;; ("??" means: "figure out what to do about it")
fff4a046 47;;
53cc90ab
DN
48;; FUNCTION NAME STATUS
49;; BACKEND PROPERTIES
50;; * revision-granularity OK
51;; STATE-QUERYING FUNCTIONS
52;; * registered (file) OK
53;; * state (file) OK
108607bc 54;; - state-heuristic (file) NOT NEEDED
53cc90ab 55;; - dir-state (dir) OK
ac3f4c6f 56;; * working-revision (file) OK
108607bc 57;; - latest-on-branch-p (file) NOT NEEDED
53cc90ab 58;; * checkout-model (file) OK
7546c767 59;; - workfile-unchanged-p (file) OK
6f222162 60;; - mode-line-string (file) OK
53cc90ab
DN
61;; - dired-state-info (file) OK
62;; STATE-CHANGING FUNCTIONS
63;; * create-repo () OK
9143abff 64;; * register (files &optional rev comment) OK
ac3f4c6f 65;; - init-revision (file) NOT NEEDED
53cc90ab 66;; - responsible-p (file) OK
108607bc
DN
67;; - could-register (file) NOT NEEDED, DEFAULT IS GOOD
68;; - receive-file (file rev) NOT NEEDED
d7009f45 69;; - unregister (file) OK
9143abff 70;; * checkin (files rev comment) OK
ac3f4c6f 71;; * find-revision (file rev buffer) OK
53cc90ab
DN
72;; * checkout (file &optional editable rev) OK
73;; * revert (file &optional contents-done) OK
108607bc
DN
74;; - rollback (files) COULD BE SUPPORTED
75;; - merge (file rev1 rev2) It would be possible to merge changes into
76;; a single file, but when committing they
77;; wouldn't be identified as a merge by git,
b747d346
DN
78;; so it's probably not a good idea.
79;; - merge-news (file) see `merge'
5b5afd50 80;; - steal-lock (file &optional revision) NOT NEEDED
53cc90ab 81;; HISTORY FUNCTIONS
9143abff 82;; * print-log (files &optional buffer) OK
53cc90ab 83;; - log-view-mode () OK
b16bd82d 84;; - show-log-entry (revision) OK
108607bc
DN
85;; - wash-log (file) COULD BE SUPPORTED
86;; - logentry-check () NOT NEEDED
53cc90ab 87;; - comment-history (file) ??
108607bc 88;; - update-changelog (files) COULD BE SUPPORTED
b747d346 89;; * diff (file &optional rev1 rev2 buffer) OK
54a2247d 90;; - revision-completion-table (files) NEEDED?
53cc90ab
DN
91;; - annotate-command (file buf &optional rev) OK
92;; - annotate-time () OK
108607bc 93;; - annotate-current-time () NOT NEEDED
53cc90ab
DN
94;; - annotate-extract-revision-at-line () OK
95;; SNAPSHOT SYSTEM
b747d346 96;; - create-snapshot (dir name branchp) OK
53cc90ab 97;; - assign-name (file name) NOT NEEDED
40ed3f4f 98;; - retrieve-snapshot (dir name update) OK, needs to update buffers
53cc90ab 99;; MISCELLANEOUS
108607bc
DN
100;; - make-version-backups-p (file) NOT NEEDED
101;; - repository-hostname (dirname) NOT NEEDED
5b5afd50
ER
102;; - previous-revision (file rev) OK
103;; - next-revision (file rev) OK
108607bc
DN
104;; - check-headers () COULD BE SUPPORTED
105;; - clear-headers () NOT NEEDED
8b38ce20
DN
106;; - delete-file (file) OK
107;; - rename-file (old new) OK
108607bc
DN
108;; - find-file-hook () NOT NEEDED
109;; - find-file-not-found-hook () NOT NEEDED
fff4a046 110
f0e1713e 111(eval-when-compile (require 'cl) (require 'vc) (require 'grep))
fff4a046
DN
112
113(defvar git-commits-coding-system 'utf-8
114 "Default coding system for git commits.")
115
53cc90ab
DN
116;;; BACKEND PROPERTIES
117
118(defun vc-git-revision-granularity ()
2aa0736a 119 'repository)
53cc90ab
DN
120
121;;; STATE-QUERYING FUNCTIONS
122
123;;;###autoload (defun vc-git-registered (file)
124;;;###autoload "Return non-nil if FILE is registered with git."
125;;;###autoload (if (vc-find-root file ".git") ; short cut
126;;;###autoload (progn
127;;;###autoload (load "vc-git")
128;;;###autoload (vc-git-registered file))))
129
fff4a046
DN
130(defun vc-git-registered (file)
131 "Check whether FILE is registered with git."
53cc90ab
DN
132 (when (vc-git-root file)
133 (with-temp-buffer
134 (let* ((dir (file-name-directory file))
135 (name (file-relative-name file dir)))
136 (and (ignore-errors
2aa0736a 137 (when dir (cd dir))
5fdbecd8 138 (vc-git--out-ok "ls-files" "-c" "-z" "--" name))
53cc90ab
DN
139 (let ((str (buffer-string)))
140 (and (> (length str) (length name))
2aa0736a
TTN
141 (string= (substring str 0 (1+ (length name)))
142 (concat name "\0")))))))))
108607bc 143
75cb52be
DN
144(defun vc-git--state-code (code)
145 "Convert from a string to a added/deleted/modified state."
146 (case (string-to-char code)
147 (?M 'edited)
148 (?A 'added)
149 (?D 'removed)
150 (?U 'edited) ;; FIXME
151 (?T 'edited))) ;; FIXME
152
fff4a046 153(defun vc-git-state (file)
53cc90ab 154 "Git-specific version of `vc-state'."
722f037f 155 ;; FIXME: This can't set 'ignored yet
5fdbecd8 156 (vc-git--call nil "add" "--refresh" "--" (file-relative-name file))
fff4a046 157 (let ((diff (vc-git--run-command-string file "diff-index" "-z" "HEAD" "--")))
75cb52be 158 (if (and diff (string-match ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} \\([ADMUT]\\)\0[^\0]+\0"
2aa0736a 159 diff))
75cb52be 160 (vc-git--state-code (match-string 1 diff))
8e4e4aef 161 (if (vc-git--empty-db-p) 'added 'up-to-date))))
fff4a046 162
b936ef8c
DN
163(defun vc-git--ls-files-state (state &rest args)
164 "Set state to STATE on all files found with git-ls-files ARGS."
53cc90ab 165 (with-temp-buffer
b936ef8c 166 (apply 'vc-git-command (current-buffer) nil nil "ls-files" "-z" args)
53cc90ab 167 (goto-char (point-min))
b936ef8c
DN
168 (let ((start (point)))
169 (while (search-forward "\0" nil t)
170 (let ((file (expand-file-name
171 (buffer-substring-no-properties start (1- (point))))))
172 (vc-file-setprop file 'vc-backend (if state 'Git 'none))
173 (vc-file-setprop file 'vc-state state))
174 (setq start (point))))))
175
176(defun vc-git-dir-state (dir)
177 "Git-specific version of `dir-state'."
178 (vc-git--ls-files-state 'up-to-date "-c")
179 (vc-git--ls-files-state 'edited "-m")
180 (vc-git--ls-files-state 'removed "-d")
181 (vc-git--ls-files-state 'ignored "-o" "-i" "--exclude-standard")
182 (vc-git--ls-files-state nil "-o" "--exclude-standard"))
53cc90ab 183
ac3f4c6f
ER
184(defun vc-git-working-revision (file)
185 "Git-specific version of `vc-working-revision'."
fff4a046
DN
186 (let ((str (with-output-to-string
187 (with-current-buffer standard-output
5fdbecd8 188 (vc-git--out-ok "symbolic-ref" "HEAD")))))
fff4a046
DN
189 (if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str)
190 (match-string 2 str)
191 str)))
192
193(defun vc-git-checkout-model (file)
194 'implicit)
195
196(defun vc-git-workfile-unchanged-p (file)
00d67080 197 (eq 'up-to-date (vc-git-state file)))
fff4a046 198
6f222162
DN
199(defun vc-git-mode-line-string (file)
200 "Return string for placement into the modeline for FILE."
ac3f4c6f 201 (let* ((branch (vc-git-working-revision file))
6f222162
DN
202 (def-ml (vc-default-mode-line-string 'Git file))
203 (help-echo (get-text-property 0 'help-echo def-ml)))
204 (if (zerop (length branch))
205 (propertize
206 (concat def-ml "!")
207 'help-echo (concat help-echo "\nNo current branch (detached HEAD)"))
208 (propertize def-ml
209 'help-echo (concat help-echo "\nCurrent branch: " branch)))))
210
e345c46e
DN
211;; Variable used to keep the intermediate results for vc-git-status.
212(defvar vc-git-status-result nil)
213
214(defun vc-git-after-dir-status-stage2 (update-function status-buffer)
215 (goto-char (point-min))
216 (while (re-search-forward "\\([^\0]*?\\)\0" nil t 1)
217 (push (cons (match-string 1) 'unregistered) vc-git-status-result))
115c0061 218 (funcall update-function (nreverse vc-git-status-result) status-buffer))
e345c46e
DN
219
220(defun vc-git-after-dir-status-stage1 (update-function status-buffer)
221 (goto-char (point-min))
222 (while (re-search-forward
223 ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} \\([ADMUT]\\)\0\\([^\0]+\\)\0"
224 nil t 1)
225 (let ((filename (match-string 2))
75cb52be 226 (status (vc-git--state-code (match-string 1))))
e345c46e
DN
227 (push (cons filename status) vc-git-status-result)))
228 (erase-buffer)
229 (vc-git-command (current-buffer) 'async nil "ls-files" "-z" "-o"
230 "--directory" "--no-empty-directory" "--exclude-standard")
231 (vc-exec-after
232 `(vc-git-after-dir-status-stage2 (quote ,update-function) ,status-buffer)))
233
8e4e4aef
DN
234(defun vc-git-after-dir-status-stage1-empty-db (update-function status-buffer)
235 (goto-char (point-min))
236 (while (re-search-forward "\\([^\0]*?\\)\0" nil t 1)
237 (push (cons (match-string 1) 'added) vc-git-status-result))
238 (erase-buffer)
239 (vc-git-command (current-buffer) 'async nil "ls-files" "-z" "-o"
240 "--directory" "--no-empty-directory" "--exclude-standard")
241 (vc-exec-after
242 `(vc-git-after-dir-status-stage2 (quote ,update-function) ,status-buffer)))
243
758dc0cc
TTN
244(defun vc-git-dir-status (dir update-function status-buffer)
245 "Return a list of conses (file . state) for DIR."
12cb746e 246 ;; Further things that would have to be fixed later:
12cb746e
DN
247 ;; - how to handle unregistered directories
248 ;; - how to support vc-status on a subdir of the project tree
115c0061
DN
249 (set (make-local-variable 'vc-git-status-result) nil)
250 (if (vc-git--empty-db-p)
251 (progn
252 (vc-git-command (current-buffer) 'async nil "ls-files" "-z" "-c")
253 (vc-exec-after
254 `(vc-git-after-dir-status-stage1-empty-db
255 (quote ,update-function) ,status-buffer)))
256 (vc-git-command (current-buffer) 'async nil "diff-index" "-z" "HEAD")
257 (vc-exec-after
258 `(vc-git-after-dir-status-stage1 (quote ,update-function) ,status-buffer))))
758dc0cc 259
15c5c970
DN
260(defun vc-git-status-extra-headers (dir)
261 (let ((str (with-output-to-string
262 (with-current-buffer standard-output
263 (vc-git--out-ok "symbolic-ref" "HEAD")))))
264 (concat
265 (propertize "Branch : " 'face 'font-lock-type-face)
266 (propertize
267 (if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str)
268 (match-string 2 str)
269 "not (detached HEAD)")
270 'face 'font-lock-variable-name-face))))
271
53cc90ab
DN
272;;; STATE-CHANGING FUNCTIONS
273
274(defun vc-git-create-repo ()
4211679b 275 "Create a new Git repository."
00d67080 276 (vc-git-command nil 0 nil "init"))
53cc90ab 277
8b9783e0 278(defun vc-git-register (files &optional rev comment)
fff4a046 279 "Register FILE into the git version-control system."
8b9783e0 280 (vc-git-command nil 0 files "update-index" "--add" "--"))
fff4a046 281
53cc90ab
DN
282(defalias 'vc-git-responsible-p 'vc-git-root)
283
d7009f45
DN
284(defun vc-git-unregister (file)
285 (vc-git-command nil 0 file "rm" "-f" "--cached" "--"))
108607bc 286
d7009f45 287
8b9783e0 288(defun vc-git-checkin (files rev comment)
fff4a046 289 (let ((coding-system-for-write git-commits-coding-system))
8b9783e0 290 (vc-git-command nil 0 files "commit" "-m" comment "--only" "--")))
fff4a046 291
ac3f4c6f 292(defun vc-git-find-revision (file rev buffer)
b0f90937 293 (let ((coding-system-for-read 'binary)
8b38ce20
DN
294 (coding-system-for-write 'binary)
295 (fullname (substring
108607bc 296 (vc-git--run-command-string
8b38ce20
DN
297 file "ls-files" "-z" "--full-name" "--")
298 0 -1)))
108607bc
DN
299 (vc-git-command
300 buffer 0
8b38ce20 301 (concat (if rev rev "HEAD") ":" fullname) "cat-file" "blob")))
b0f90937
DN
302
303(defun vc-git-checkout (file &optional editable rev)
7546c767 304 (vc-git-command nil 0 file "checkout" (or rev "HEAD")))
fff4a046
DN
305
306(defun vc-git-revert (file &optional contents-done)
307 "Revert FILE to the version stored in the git repository."
308 (if contents-done
b0f90937
DN
309 (vc-git-command nil 0 file "update-index" "--")
310 (vc-git-command nil 0 file "checkout" "HEAD")))
fff4a046 311
53cc90ab
DN
312;;; HISTORY FUNCTIONS
313
8b9783e0
DN
314(defun vc-git-print-log (files &optional buffer)
315 "Get change log associated with FILES."
a0709d8d
DN
316 (let ((coding-system-for-read git-commits-coding-system)
317 ;; Support both the old print-log interface that passes a
318 ;; single file, and the new one that passes a file list.
319 (flist (if (listp files) files (list files))))
53cc90ab
DN
320 ;; `vc-do-command' creates the buffer, but we need it before running
321 ;; the command.
322 (vc-setup-buffer buffer)
323 ;; If the buffer exists from a previous invocation it might be
324 ;; read-only.
325 (let ((inhibit-read-only t))
64e3efd9
DN
326 ;; XXX `log-view-mode' needs to have something to identify where
327 ;; the log for each individual file starts. It seems that by
328 ;; default git does not output this info. So loop here and call
329 ;; "git rev-list" on each file separately to make sure that each
330 ;; file gets a "File:" header before the corresponding
331 ;; log. Maybe there is a way to do this with one command...
a0709d8d 332 (dolist (file flist)
64e3efd9
DN
333 (with-current-buffer
334 buffer
335 (insert "File: " (file-name-nondirectory file) "\n"))
108607bc 336 (vc-git-command buffer 'async (file-relative-name file)
64e3efd9 337 "rev-list" "--pretty" "HEAD" "--")))))
53cc90ab
DN
338
339(defvar log-view-message-re)
340(defvar log-view-file-re)
341(defvar log-view-font-lock-keywords)
342
4211679b 343(define-derived-mode vc-git-log-view-mode log-view-mode "Git-Log-View"
53cc90ab
DN
344 (require 'add-log) ;; we need the faces add-log
345 ;; Don't have file markers, so use impossible regexp.
346 (set (make-local-variable 'log-view-file-re) "^File:[ \t]+\\(.+\\)")
347 (set (make-local-variable 'log-view-message-re)
348 "^commit *\\([0-9a-z]+\\)")
349 (set (make-local-variable 'log-view-font-lock-keywords)
350 (append
2aa0736a
TTN
351 `((,log-view-message-re (1 'change-log-acknowledgement))
352 (,log-view-file-re (1 'change-log-file-face)))
353 ;; Handle the case:
354 ;; user: foo@bar
355 '(("^Author:[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)"
356 (1 'change-log-email))
357 ;; Handle the case:
358 ;; user: FirstName LastName <foo@bar>
359 ("^Author:[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]"
360 (1 'change-log-name)
361 (2 'change-log-email))
362 ("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)"
363 (1 'change-log-name))
364 ("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]"
365 (1 'change-log-name)
366 (2 'change-log-email))
367 ("^Merge: \\([0-9a-z]+\\) \\([0-9a-z]+\\)"
368 (1 'change-log-acknowledgement)
369 (2 'change-log-acknowledgement))
370 ("^Date: \\(.+\\)" (1 'change-log-date))
371 ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message))))))
fff4a046 372
b16bd82d
TTN
373(defun vc-git-show-log-entry (revision)
374 "Move to the log entry for REVISION.
375REVISION may have the form BRANCH, BRANCH~N,
376or BRANCH^ (where \"^\" can be repeated)."
377 (goto-char (point-min))
378 (search-forward "\ncommit" nil t
379 (cond ((string-match "~\\([0-9]\\)$" revision)
380 (1+ (string-to-number (match-string 1 revision))))
381 ((string-match "\\^+$" revision)
382 (1+ (length (match-string 0 revision))))
383 (t nil)))
384 (beginning-of-line))
385
b747d346
DN
386(defun vc-git-diff (files &optional rev1 rev2 buffer)
387 (let ((buf (or buffer "*vc-diff*")))
fff4a046 388 (if (and rev1 rev2)
2aa0736a
TTN
389 (vc-git-command buf 1 files "diff-tree" "--exit-code" "-p"
390 rev1 rev2 "--")
391 (vc-git-command buf 1 files "diff-index" "--exit-code" "-p"
392 (or rev1 "HEAD") "--"))))
fff4a046 393
9f11ce4e
SM
394(defun vc-git-revision-table (files)
395 ;; What about `files'?!? --Stef
108607bc
DN
396 (let ((table (list "HEAD")))
397 (with-temp-buffer
398 (vc-git-command t nil nil "for-each-ref" "--format=%(refname)")
399 (goto-char (point-min))
400 (while (re-search-forward "^refs/\\(heads\\|tags\\)/\\(.*\\)$" nil t)
401 (push (match-string 2) table)))
402 table))
403
9f11ce4e
SM
404(defun vc-git-revision-completion-table (files)
405 (lexical-let ((files files)
108607bc
DN
406 table)
407 (setq table (lazy-completion-table
9f11ce4e 408 table (lambda () (vc-git-revision-table files))))
108607bc
DN
409 table))
410
fff4a046 411(defun vc-git-annotate-command (file buf &optional rev)
53cc90ab 412 ;; FIXME: rev is ignored
fff4a046 413 (let ((name (file-relative-name file)))
53cc90ab 414 (vc-git-command buf 0 name "blame" (if rev (concat "-r" rev)))))
fff4a046
DN
415
416(defun vc-git-annotate-time ()
0bcc6163 417 (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)
fff4a046 418 (vc-annotate-convert-time
2aa0736a
TTN
419 (apply #'encode-time (mapcar (lambda (match)
420 (string-to-number (match-string match)))
421 '(6 5 4 3 2 1 7))))))
fff4a046 422
53cc90ab 423(defun vc-git-annotate-extract-revision-at-line ()
2aa0736a
TTN
424 (save-excursion
425 (move-beginning-of-line 1)
dd3ffb9a 426 (and (looking-at "[0-9a-f^][0-9a-f]+")
2aa0736a 427 (buffer-substring-no-properties (match-beginning 0) (match-end 0)))))
53cc90ab 428
b747d346
DN
429;;; SNAPSHOT SYSTEM
430
431(defun vc-git-create-snapshot (dir name branchp)
432 (let ((default-directory dir))
433 (and (vc-git-command nil 0 nil "update-index" "--refresh")
434 (if branchp
435 (vc-git-command nil 0 nil "checkout" "-b" name)
436 (vc-git-command nil 0 nil "tag" name)))))
437
438(defun vc-git-retrieve-snapshot (dir name update)
439 (let ((default-directory dir))
440 (vc-git-command nil 0 nil "checkout" name)
441 ;; FIXME: update buffers if `update' is true
442 ))
443
444
53cc90ab 445;;; MISCELLANEOUS
fff4a046 446
5b5afd50
ER
447(defun vc-git-previous-revision (file rev)
448 "Git-specific version of `vc-previous-revision'."
fff4a046
DN
449 (let ((default-directory (file-name-directory (expand-file-name file)))
450 (file (file-name-nondirectory file)))
451 (vc-git-symbolic-commit
452 (with-temp-buffer
453 (and
5fdbecd8 454 (vc-git--out-ok "rev-list" "-2" rev "--" file)
fff4a046
DN
455 (goto-char (point-max))
456 (bolp)
457 (zerop (forward-line -1))
458 (not (bobp))
459 (buffer-substring-no-properties
2aa0736a
TTN
460 (point)
461 (1- (point-max))))))))
fff4a046 462
5b5afd50
ER
463(defun vc-git-next-revision (file rev)
464 "Git-specific version of `vc-next-revision'."
fff4a046
DN
465 (let* ((default-directory (file-name-directory
466 (expand-file-name file)))
2aa0736a
TTN
467 (file (file-name-nondirectory file))
468 (current-rev
469 (with-temp-buffer
470 (and
5fdbecd8 471 (vc-git--out-ok "rev-list" "-1" rev "--" file)
2aa0736a
TTN
472 (goto-char (point-max))
473 (bolp)
474 (zerop (forward-line -1))
475 (bobp)
476 (buffer-substring-no-properties
477 (point)
478 (1- (point-max)))))))
fff4a046
DN
479 (and current-rev
480 (vc-git-symbolic-commit
481 (with-temp-buffer
482 (and
5fdbecd8 483 (vc-git--out-ok "rev-list" "HEAD" "--" file)
fff4a046
DN
484 (goto-char (point-min))
485 (search-forward current-rev nil t)
486 (zerop (forward-line -1))
487 (buffer-substring-no-properties
488 (point)
489 (progn (forward-line 1) (1- (point))))))))))
490
8b38ce20
DN
491(defun vc-git-delete-file (file)
492 (vc-git-command nil 0 file "rm" "-f" "--"))
b0f90937 493
8b38ce20
DN
494(defun vc-git-rename-file (old new)
495 (vc-git-command nil 0 (list old new) "mv" "-f" "--"))
b0f90937 496
f0e1713e
DN
497(defvar vc-git-extra-menu-map
498 (let ((map (make-sparse-keymap)))
499 (define-key map [git-grep]
500 '(menu-item "Git grep..." vc-git-grep
501 :help "Run the `git grep' command"))
502 map))
503
504(defun vc-git-extra-menu () vc-git-extra-menu-map)
505
506(defun vc-git-extra-status-menu () vc-git-extra-menu-map)
507
508;; Derived from `lgrep'.
509(defun vc-git-grep (regexp &optional files dir)
510 "Run git grep, searching for REGEXP in FILES in directory DIR.
511The search is limited to file names matching shell pattern FILES.
512FILES may use abbreviations defined in `grep-files-aliases', e.g.
513entering `ch' is equivalent to `*.[ch]'.
514
515With \\[universal-argument] prefix, you can edit the constructed shell command line
516before it is executed.
517With two \\[universal-argument] prefixes, directly edit and run `grep-command'.
518
519Collect output in a buffer. While git grep runs asynchronously, you
520can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
521in the grep output buffer,
522to go to the lines where grep found matches.
523
524This command shares argument histories with \\[rgrep] and \\[grep]."
525 (interactive
526 (progn
527 (grep-compute-defaults)
528 (cond
529 ((equal current-prefix-arg '(16))
530 (list (read-from-minibuffer "Run: " "git grep"
531 nil nil 'grep-history)
532 nil))
533 (t (let* ((regexp (grep-read-regexp))
534 (files (grep-read-files regexp))
535 (dir (read-directory-name "In directory: "
536 nil default-directory t)))
537 (list regexp files dir))))))
538 (require 'grep)
539 (when (and (stringp regexp) (> (length regexp) 0))
540 (let ((command regexp))
541 (if (null files)
542 (if (string= command "git grep")
543 (setq command nil))
544 (setq dir (file-name-as-directory (expand-file-name dir)))
545 (setq command
546 (grep-expand-template "git grep -n -e <R> -- <F>" regexp files))
547 (when command
548 (if (equal current-prefix-arg '(4))
549 (setq command
550 (read-from-minibuffer "Confirm: "
551 command nil nil 'grep-history))
552 (add-to-history 'grep-history command))))
553 (when command
554 (let ((default-directory dir)
555 (compilation-environment '("PAGER=")))
556 ;; Setting process-setup-function makes exit-message-function work
557 ;; even when async processes aren't supported.
558 (compilation-start command 'grep-mode))
559 (if (eq next-error-last-buffer (current-buffer))
560 (setq default-directory dir))))))
fff4a046 561\f
b747d346 562;;; Internal commands
fff4a046 563
53cc90ab
DN
564(defun vc-git-root (file)
565 (vc-find-root file ".git"))
566
8b9783e0 567(defun vc-git-command (buffer okstatus file-or-list &rest flags)
53cc90ab
DN
568 "A wrapper around `vc-do-command' for use in vc-git.el.
569The difference to vc-do-command is that this function always invokes `git'."
8b9783e0 570 (apply 'vc-do-command buffer okstatus "git" file-or-list flags))
53cc90ab 571
8e4e4aef
DN
572(defun vc-git--empty-db-p ()
573 "Check if the git db is empty (no commit done yet)."
574 (not (eq 0 (vc-git--call nil "rev-parse" "--verify" "HEAD"))))
575
5fdbecd8 576(defun vc-git--call (buffer command &rest args)
0664ff72
MA
577 ;; We don't need to care the arguments. If there is a file name, it
578 ;; is always a relative one. This works also for remote
579 ;; directories.
580 (apply 'process-file "git" nil buffer nil command args))
5fdbecd8
TTN
581
582(defun vc-git--out-ok (command &rest args)
583 (zerop (apply 'vc-git--call '(t nil) command args)))
584
fff4a046
DN
585(defun vc-git--run-command-string (file &rest args)
586 "Run a git command on FILE and return its output as string."
587 (let* ((ok t)
588 (str (with-output-to-string
589 (with-current-buffer standard-output
5fdbecd8
TTN
590 (unless (apply 'vc-git--out-ok
591 (append args (list (file-relative-name
592 file))))
fff4a046
DN
593 (setq ok nil))))))
594 (and ok str)))
595
fff4a046
DN
596(defun vc-git-symbolic-commit (commit)
597 "Translate COMMIT string into symbolic form.
598Returns nil if not possible."
599 (and commit
600 (with-temp-buffer
601 (and
5fdbecd8 602 (vc-git--out-ok "name-rev" "--name-only" "--tags" commit)
fff4a046
DN
603 (goto-char (point-min))
604 (= (forward-line 2) 1)
605 (bolp)
606 (buffer-substring-no-properties (point-min) (1- (point-max)))))))
607
608(provide 'vc-git)
53cc90ab 609
328471d9 610;; arch-tag: bd10664a-0e5b-48f5-a877-6c17b135be12
53cc90ab 611;;; vc-git.el ends here