Mercurial > emacs
annotate lisp/vc-git.el @ 91321:57348bc42776
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 07 Jan 2008 12:37:30 +0000 |
parents | de0bd1c6cbfd |
children | 77d4b0e5e5d2 |
rev | line source |
---|---|
78355 | 1 ;;; vc-git.el --- VC backend for the git version control system |
2 | |
3 ;; Copyright (C) 2006, 2007 Free Software Foundation, Inc. | |
4 | |
5 ;; Author: Alexandre Julliard <julliard@winehq.org> | |
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 | |
12 ;; the Free Software Foundation; either version 3, or (at your option) | |
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 | |
78404
27f00e50116a
Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents:
78359
diff
changeset
|
33 ;; To install: put this file on the load-path and add Git to the list |
78355 | 34 ;; of supported backends in `vc-handled-backends'; the following line, |
35 ;; placed in your ~/.emacs, will accomplish this: | |
36 ;; | |
78404
27f00e50116a
Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents:
78359
diff
changeset
|
37 ;; (add-to-list 'vc-handled-backends 'Git) |
78355 | 38 |
39 ;;; Todo: | |
40 ;; - check if more functions could use vc-git-command instead | |
41 ;; of start-process. | |
42 ;; - changelog generation | |
43 | |
44 ;; Implement the rest of the vc interface. See the comment at the | |
45 ;; beginning of vc.el. The current status is: | |
46 ;; ("??" means: "figure out what to do about it") | |
47 ;; | |
48 ;; FUNCTION NAME STATUS | |
49 ;; BACKEND PROPERTIES | |
50 ;; * revision-granularity OK | |
51 ;; STATE-QUERYING FUNCTIONS | |
52 ;; * registered (file) OK | |
53 ;; * state (file) OK | |
54 ;; - state-heuristic (file) NOT NEEDED | |
55 ;; - dir-state (dir) OK | |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85114
diff
changeset
|
56 ;; * working-revision (file) OK |
78355 | 57 ;; - latest-on-branch-p (file) NOT NEEDED |
58 ;; * checkout-model (file) OK | |
59 ;; - workfile-unchanged-p (file) OK | |
82843
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
60 ;; - mode-line-string (file) OK |
78355 | 61 ;; - dired-state-info (file) OK |
62 ;; STATE-CHANGING FUNCTIONS | |
63 ;; * create-repo () OK | |
64 ;; * register (files &optional rev comment) OK | |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85114
diff
changeset
|
65 ;; - init-revision (file) NOT NEEDED |
78355 | 66 ;; - responsible-p (file) OK |
67 ;; - could-register (file) NOT NEEDED, DEFAULT IS GOOD | |
68 ;; - receive-file (file rev) NOT NEEDED | |
69 ;; - unregister (file) OK | |
70 ;; * checkin (files rev comment) OK | |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85114
diff
changeset
|
71 ;; * find-revision (file rev buffer) OK |
78355 | 72 ;; * checkout (file &optional editable rev) OK |
73 ;; * revert (file &optional contents-done) OK | |
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, | |
78 ;; so it's probably not a good idea. | |
79 ;; - merge-news (file) see `merge' | |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
80 ;; - steal-lock (file &optional revision) NOT NEEDED |
78355 | 81 ;; HISTORY FUNCTIONS |
82 ;; * print-log (files &optional buffer) OK | |
83 ;; - log-view-mode () OK | |
86397
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
84 ;; - show-log-entry (revision) OK |
78355 | 85 ;; - wash-log (file) COULD BE SUPPORTED |
86 ;; - logentry-check () NOT NEEDED | |
87 ;; - comment-history (file) ?? | |
88 ;; - update-changelog (files) COULD BE SUPPORTED | |
89 ;; * diff (file &optional rev1 rev2 buffer) OK | |
85462
43a9834cf1a6
* vc-bzr.el (vc-bzr-diff-tree):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85459
diff
changeset
|
90 ;; - revision-completion-table (files) NEEDED? |
78355 | 91 ;; - annotate-command (file buf &optional rev) OK |
92 ;; - annotate-time () OK | |
93 ;; - annotate-current-time () NOT NEEDED | |
94 ;; - annotate-extract-revision-at-line () OK | |
95 ;; SNAPSHOT SYSTEM | |
96 ;; - create-snapshot (dir name branchp) OK | |
97 ;; - assign-name (file name) NOT NEEDED | |
98 ;; - retrieve-snapshot (dir name update) OK, needs to update buffers | |
99 ;; MISCELLANEOUS | |
100 ;; - make-version-backups-p (file) NOT NEEDED | |
101 ;; - repository-hostname (dirname) NOT NEEDED | |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
102 ;; - previous-revision (file rev) OK |
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
103 ;; - next-revision (file rev) OK |
78355 | 104 ;; - check-headers () COULD BE SUPPORTED |
105 ;; - clear-headers () NOT NEEDED | |
106 ;; - delete-file (file) OK | |
107 ;; - rename-file (old new) OK | |
108 ;; - find-file-hook () NOT NEEDED | |
109 ;; - find-file-not-found-hook () NOT NEEDED | |
110 | |
111 (eval-when-compile (require 'cl) (require 'vc)) | |
112 | |
113 (defvar git-commits-coding-system 'utf-8 | |
114 "Default coding system for git commits.") | |
115 | |
116 ;;; BACKEND PROPERTIES | |
117 | |
118 (defun vc-git-revision-granularity () | |
86400 | 119 'repository) |
78355 | 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 | |
130 (defun vc-git-registered (file) | |
131 "Check whether FILE is registered with git." | |
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 | |
86400 | 137 (when dir (cd dir)) |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
138 (vc-git--out-ok "ls-files" "-c" "-z" "--" name)) |
78355 | 139 (let ((str (buffer-string))) |
140 (and (> (length str) (length name)) | |
86400 | 141 (string= (substring str 0 (1+ (length name))) |
142 (concat name "\0"))))))))) | |
78355 | 143 |
144 (defun vc-git-state (file) | |
145 "Git-specific version of `vc-state'." | |
87450
71fc7b1db920
* vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
87442
diff
changeset
|
146 ;; FIXME: This can't set 'ignored yet |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
147 (vc-git--call nil "add" "--refresh" "--" (file-relative-name file)) |
78355 | 148 (let ((diff (vc-git--run-command-string file "diff-index" "-z" "HEAD" "--"))) |
86400 | 149 (if (and diff (string-match ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} [ADMU]\0[^\0]+\0" |
150 diff)) | |
78355 | 151 'edited |
152 'up-to-date))) | |
153 | |
154 (defun vc-git-dir-state (dir) | |
87450
71fc7b1db920
* vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
87442
diff
changeset
|
155 "Git-specific version of `dir-state'." |
71fc7b1db920
* vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
87442
diff
changeset
|
156 ;; FIXME: This can't set 'ignored yet |
78355 | 157 (with-temp-buffer |
86830
7c0a55a957d0
* vc-git.el (vc-git-dir-state): Fix the git command arguments.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86422
diff
changeset
|
158 (vc-git-command (current-buffer) nil nil "ls-files" "-t" "-c" "-m" "-o") |
78355 | 159 (goto-char (point-min)) |
160 (let ((status-char nil) | |
161 (file nil)) | |
162 (while (not (eobp)) | |
163 (setq status-char (char-after)) | |
164 (setq file | |
165 (expand-file-name | |
86400 | 166 (buffer-substring-no-properties (+ (point) 2) |
167 (line-end-position)))) | |
78355 | 168 (cond |
169 ;; The rest of the possible states in "git ls-files -t" output: | |
170 ;; K to be killed | |
171 ;; should not show up in vc-dired, so don't deal with them | |
172 ;; here. | |
173 ((eq status-char ?H) | |
87516
de0bd1c6cbfd
(vc-git-dir-state): Set the vc-backend property. Do
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87477
diff
changeset
|
174 (vc-file-setprop file 'vc-backend 'Git) |
78355 | 175 (vc-file-setprop file 'vc-state 'up-to-date)) |
87477
b5060e79eb98
* vc-svn.el (vc-svn-parse-status): Recognize 'added, 'removed,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
87450
diff
changeset
|
176 ((eq status-char ?R) |
87516
de0bd1c6cbfd
(vc-git-dir-state): Set the vc-backend property. Do
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87477
diff
changeset
|
177 (vc-file-setprop file 'vc-backend 'Git) |
87477
b5060e79eb98
* vc-svn.el (vc-svn-parse-status): Recognize 'added, 'removed,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
87450
diff
changeset
|
178 (vc-file-setprop file 'vc-state 'removed)) |
78355 | 179 ((eq status-char ?M) |
87516
de0bd1c6cbfd
(vc-git-dir-state): Set the vc-backend property. Do
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87477
diff
changeset
|
180 (vc-file-setprop file 'vc-backend 'Git) |
78355 | 181 (vc-file-setprop file 'vc-state 'edited)) |
182 ((eq status-char ?C) | |
87516
de0bd1c6cbfd
(vc-git-dir-state): Set the vc-backend property. Do
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87477
diff
changeset
|
183 (vc-file-setprop file 'vc-backend 'Git) |
78355 | 184 (vc-file-setprop file 'vc-state 'edited)) |
185 ((eq status-char ??) | |
186 (vc-file-setprop file 'vc-backend 'none) | |
87477
b5060e79eb98
* vc-svn.el (vc-svn-parse-status): Recognize 'added, 'removed,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
87450
diff
changeset
|
187 (vc-file-setprop file 'vc-state nil))) |
78355 | 188 (forward-line))))) |
189 | |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85114
diff
changeset
|
190 (defun vc-git-working-revision (file) |
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85114
diff
changeset
|
191 "Git-specific version of `vc-working-revision'." |
78355 | 192 (let ((str (with-output-to-string |
193 (with-current-buffer standard-output | |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
194 (vc-git--out-ok "symbolic-ref" "HEAD"))))) |
78355 | 195 (if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str) |
196 (match-string 2 str) | |
197 str))) | |
198 | |
199 (defun vc-git-checkout-model (file) | |
200 'implicit) | |
201 | |
202 (defun vc-git-workfile-unchanged-p (file) | |
78687
429a17d4958d
* vc-git.el (vc-git-state): Call git-add --refresh to update the
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78404
diff
changeset
|
203 (eq 'up-to-date (vc-git-state file))) |
78355 | 204 |
82843
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
205 (defun vc-git-mode-line-string (file) |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
206 "Return string for placement into the modeline for FILE." |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85114
diff
changeset
|
207 (let* ((branch (vc-git-working-revision file)) |
82843
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
208 (def-ml (vc-default-mode-line-string 'Git file)) |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
209 (help-echo (get-text-property 0 'help-echo def-ml))) |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
210 (if (zerop (length branch)) |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
211 (propertize |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
212 (concat def-ml "!") |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
213 'help-echo (concat help-echo "\nNo current branch (detached HEAD)")) |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
214 (propertize def-ml |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
215 'help-echo (concat help-echo "\nCurrent branch: " branch))))) |
768766d373a7
* vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
216 |
78355 | 217 (defun vc-git-dired-state-info (file) |
218 "Git-specific version of `vc-dired-state-info'." | |
219 (let ((git-state (vc-state file))) | |
220 (if (eq git-state 'edited) | |
221 "(modified)" | |
222 ;; fall back to the default VC representation | |
78404
27f00e50116a
Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents:
78359
diff
changeset
|
223 (vc-default-dired-state-info 'Git file)))) |
78355 | 224 |
225 ;;; STATE-CHANGING FUNCTIONS | |
226 | |
227 (defun vc-git-create-repo () | |
78404
27f00e50116a
Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents:
78359
diff
changeset
|
228 "Create a new Git repository." |
78687
429a17d4958d
* vc-git.el (vc-git-state): Call git-add --refresh to update the
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78404
diff
changeset
|
229 (vc-git-command nil 0 nil "init")) |
78355 | 230 |
231 (defun vc-git-register (files &optional rev comment) | |
232 "Register FILE into the git version-control system." | |
233 (vc-git-command nil 0 files "update-index" "--add" "--")) | |
234 | |
235 (defalias 'vc-git-responsible-p 'vc-git-root) | |
236 | |
237 (defun vc-git-unregister (file) | |
238 (vc-git-command nil 0 file "rm" "-f" "--cached" "--")) | |
239 | |
240 | |
241 (defun vc-git-checkin (files rev comment) | |
242 (let ((coding-system-for-write git-commits-coding-system)) | |
243 (vc-git-command nil 0 files "commit" "-m" comment "--only" "--"))) | |
244 | |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85114
diff
changeset
|
245 (defun vc-git-find-revision (file rev buffer) |
78355 | 246 (let ((coding-system-for-read 'binary) |
247 (coding-system-for-write 'binary) | |
248 (fullname (substring | |
249 (vc-git--run-command-string | |
250 file "ls-files" "-z" "--full-name" "--") | |
251 0 -1))) | |
252 (vc-git-command | |
253 buffer 0 | |
254 (concat (if rev rev "HEAD") ":" fullname) "cat-file" "blob"))) | |
255 | |
256 (defun vc-git-checkout (file &optional editable rev) | |
257 (vc-git-command nil 0 file "checkout" (or rev "HEAD"))) | |
258 | |
259 (defun vc-git-revert (file &optional contents-done) | |
260 "Revert FILE to the version stored in the git repository." | |
261 (if contents-done | |
262 (vc-git-command nil 0 file "update-index" "--") | |
263 (vc-git-command nil 0 file "checkout" "HEAD"))) | |
264 | |
265 ;;; HISTORY FUNCTIONS | |
266 | |
267 (defun vc-git-print-log (files &optional buffer) | |
268 "Get change log associated with FILES." | |
269 (let ((coding-system-for-read git-commits-coding-system) | |
270 ;; Support both the old print-log interface that passes a | |
271 ;; single file, and the new one that passes a file list. | |
272 (flist (if (listp files) files (list files)))) | |
273 ;; `vc-do-command' creates the buffer, but we need it before running | |
274 ;; the command. | |
275 (vc-setup-buffer buffer) | |
276 ;; If the buffer exists from a previous invocation it might be | |
277 ;; read-only. | |
278 (let ((inhibit-read-only t)) | |
279 ;; XXX `log-view-mode' needs to have something to identify where | |
280 ;; the log for each individual file starts. It seems that by | |
281 ;; default git does not output this info. So loop here and call | |
282 ;; "git rev-list" on each file separately to make sure that each | |
283 ;; file gets a "File:" header before the corresponding | |
284 ;; log. Maybe there is a way to do this with one command... | |
285 (dolist (file flist) | |
286 (with-current-buffer | |
287 buffer | |
288 (insert "File: " (file-name-nondirectory file) "\n")) | |
289 (vc-git-command buffer 'async (file-relative-name file) | |
290 "rev-list" "--pretty" "HEAD" "--"))))) | |
291 | |
292 (defvar log-view-message-re) | |
293 (defvar log-view-file-re) | |
294 (defvar log-view-font-lock-keywords) | |
295 | |
78404
27f00e50116a
Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents:
78359
diff
changeset
|
296 (define-derived-mode vc-git-log-view-mode log-view-mode "Git-Log-View" |
78355 | 297 (require 'add-log) ;; we need the faces add-log |
298 ;; Don't have file markers, so use impossible regexp. | |
299 (set (make-local-variable 'log-view-file-re) "^File:[ \t]+\\(.+\\)") | |
300 (set (make-local-variable 'log-view-message-re) | |
301 "^commit *\\([0-9a-z]+\\)") | |
302 (set (make-local-variable 'log-view-font-lock-keywords) | |
303 (append | |
86400 | 304 `((,log-view-message-re (1 'change-log-acknowledgement)) |
305 (,log-view-file-re (1 'change-log-file-face))) | |
306 ;; Handle the case: | |
307 ;; user: foo@bar | |
308 '(("^Author:[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)" | |
309 (1 'change-log-email)) | |
310 ;; Handle the case: | |
311 ;; user: FirstName LastName <foo@bar> | |
312 ("^Author:[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" | |
313 (1 'change-log-name) | |
314 (2 'change-log-email)) | |
315 ("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)" | |
316 (1 'change-log-name)) | |
317 ("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" | |
318 (1 'change-log-name) | |
319 (2 'change-log-email)) | |
320 ("^Merge: \\([0-9a-z]+\\) \\([0-9a-z]+\\)" | |
321 (1 'change-log-acknowledgement) | |
322 (2 'change-log-acknowledgement)) | |
323 ("^Date: \\(.+\\)" (1 'change-log-date)) | |
324 ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message)))))) | |
78355 | 325 |
86397
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
326 (defun vc-git-show-log-entry (revision) |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
327 "Move to the log entry for REVISION. |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
328 REVISION may have the form BRANCH, BRANCH~N, |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
329 or BRANCH^ (where \"^\" can be repeated)." |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
330 (goto-char (point-min)) |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
331 (search-forward "\ncommit" nil t |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
332 (cond ((string-match "~\\([0-9]\\)$" revision) |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
333 (1+ (string-to-number (match-string 1 revision)))) |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
334 ((string-match "\\^+$" revision) |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
335 (1+ (length (match-string 0 revision)))) |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
336 (t nil))) |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
337 (beginning-of-line)) |
38193bd1ab69
(vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
85462
diff
changeset
|
338 |
78355 | 339 (defun vc-git-diff (files &optional rev1 rev2 buffer) |
340 (let ((buf (or buffer "*vc-diff*"))) | |
341 (if (and rev1 rev2) | |
86400 | 342 (vc-git-command buf 1 files "diff-tree" "--exit-code" "-p" |
343 rev1 rev2 "--") | |
344 (vc-git-command buf 1 files "diff-index" "--exit-code" "-p" | |
345 (or rev1 "HEAD") "--")))) | |
78355 | 346 |
85459
dec6fdd5ddf4
(vc-git-revision-completion-table, vc-git-revision-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
347 (defun vc-git-revision-table (files) |
dec6fdd5ddf4
(vc-git-revision-completion-table, vc-git-revision-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
348 ;; What about `files'?!? --Stef |
78355 | 349 (let ((table (list "HEAD"))) |
350 (with-temp-buffer | |
351 (vc-git-command t nil nil "for-each-ref" "--format=%(refname)") | |
352 (goto-char (point-min)) | |
353 (while (re-search-forward "^refs/\\(heads\\|tags\\)/\\(.*\\)$" nil t) | |
354 (push (match-string 2) table))) | |
355 table)) | |
356 | |
85459
dec6fdd5ddf4
(vc-git-revision-completion-table, vc-git-revision-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
357 (defun vc-git-revision-completion-table (files) |
dec6fdd5ddf4
(vc-git-revision-completion-table, vc-git-revision-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
358 (lexical-let ((files files) |
78359
2dd5d799a16d
* vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78356
diff
changeset
|
359 table) |
2dd5d799a16d
* vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78356
diff
changeset
|
360 (setq table (lazy-completion-table |
85459
dec6fdd5ddf4
(vc-git-revision-completion-table, vc-git-revision-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
361 table (lambda () (vc-git-revision-table files)))) |
78359
2dd5d799a16d
* vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78356
diff
changeset
|
362 table)) |
78355 | 363 |
364 (defun vc-git-annotate-command (file buf &optional rev) | |
365 ;; FIXME: rev is ignored | |
366 (let ((name (file-relative-name file))) | |
367 (vc-git-command buf 0 name "blame" (if rev (concat "-r" rev))))) | |
368 | |
369 (defun vc-git-annotate-time () | |
86422
68e2cdfcf931
(vc-git-annotate-time): Handle optional field FILENAME.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86403
diff
changeset
|
370 (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) |
78355 | 371 (vc-annotate-convert-time |
86400 | 372 (apply #'encode-time (mapcar (lambda (match) |
373 (string-to-number (match-string match))) | |
374 '(6 5 4 3 2 1 7)))))) | |
78355 | 375 |
376 (defun vc-git-annotate-extract-revision-at-line () | |
86400 | 377 (save-excursion |
378 (move-beginning-of-line 1) | |
379 (and (looking-at "[0-9a-f]+") | |
380 (buffer-substring-no-properties (match-beginning 0) (match-end 0))))) | |
78355 | 381 |
382 ;;; SNAPSHOT SYSTEM | |
383 | |
384 (defun vc-git-create-snapshot (dir name branchp) | |
385 (let ((default-directory dir)) | |
386 (and (vc-git-command nil 0 nil "update-index" "--refresh") | |
387 (if branchp | |
388 (vc-git-command nil 0 nil "checkout" "-b" name) | |
389 (vc-git-command nil 0 nil "tag" name))))) | |
390 | |
391 (defun vc-git-retrieve-snapshot (dir name update) | |
392 (let ((default-directory dir)) | |
393 (vc-git-command nil 0 nil "checkout" name) | |
394 ;; FIXME: update buffers if `update' is true | |
395 )) | |
396 | |
397 | |
398 ;;; MISCELLANEOUS | |
399 | |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
400 (defun vc-git-previous-revision (file rev) |
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
401 "Git-specific version of `vc-previous-revision'." |
78355 | 402 (let ((default-directory (file-name-directory (expand-file-name file))) |
403 (file (file-name-nondirectory file))) | |
404 (vc-git-symbolic-commit | |
405 (with-temp-buffer | |
406 (and | |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
407 (vc-git--out-ok "rev-list" "-2" rev "--" file) |
78355 | 408 (goto-char (point-max)) |
409 (bolp) | |
410 (zerop (forward-line -1)) | |
411 (not (bobp)) | |
412 (buffer-substring-no-properties | |
86400 | 413 (point) |
414 (1- (point-max)))))))) | |
78355 | 415 |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
416 (defun vc-git-next-revision (file rev) |
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
417 "Git-specific version of `vc-next-revision'." |
78355 | 418 (let* ((default-directory (file-name-directory |
419 (expand-file-name file))) | |
86400 | 420 (file (file-name-nondirectory file)) |
421 (current-rev | |
422 (with-temp-buffer | |
423 (and | |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
424 (vc-git--out-ok "rev-list" "-1" rev "--" file) |
86400 | 425 (goto-char (point-max)) |
426 (bolp) | |
427 (zerop (forward-line -1)) | |
428 (bobp) | |
429 (buffer-substring-no-properties | |
430 (point) | |
431 (1- (point-max))))))) | |
78355 | 432 (and current-rev |
433 (vc-git-symbolic-commit | |
434 (with-temp-buffer | |
435 (and | |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
436 (vc-git--out-ok "rev-list" "HEAD" "--" file) |
78355 | 437 (goto-char (point-min)) |
438 (search-forward current-rev nil t) | |
439 (zerop (forward-line -1)) | |
440 (buffer-substring-no-properties | |
441 (point) | |
442 (progn (forward-line 1) (1- (point)))))))))) | |
443 | |
444 (defun vc-git-delete-file (file) | |
445 (vc-git-command nil 0 file "rm" "-f" "--")) | |
446 | |
447 (defun vc-git-rename-file (old new) | |
448 (vc-git-command nil 0 (list old new) "mv" "-f" "--")) | |
449 | |
450 | |
451 ;;; Internal commands | |
452 | |
453 (defun vc-git-root (file) | |
454 (vc-find-root file ".git")) | |
455 | |
456 (defun vc-git-command (buffer okstatus file-or-list &rest flags) | |
457 "A wrapper around `vc-do-command' for use in vc-git.el. | |
458 The difference to vc-do-command is that this function always invokes `git'." | |
459 (apply 'vc-do-command buffer okstatus "git" file-or-list flags)) | |
460 | |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
461 (defun vc-git--call (buffer command &rest args) |
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
462 (apply 'call-process "git" nil buffer nil command args)) |
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
463 |
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
464 (defun vc-git--out-ok (command &rest args) |
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
465 (zerop (apply 'vc-git--call '(t nil) command args))) |
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
466 |
78355 | 467 (defun vc-git--run-command-string (file &rest args) |
468 "Run a git command on FILE and return its output as string." | |
469 (let* ((ok t) | |
470 (str (with-output-to-string | |
471 (with-current-buffer standard-output | |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
472 (unless (apply 'vc-git--out-ok |
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
473 (append args (list (file-relative-name |
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
474 file)))) |
78355 | 475 (setq ok nil)))))) |
476 (and ok str))) | |
477 | |
478 (defun vc-git-symbolic-commit (commit) | |
479 "Translate COMMIT string into symbolic form. | |
480 Returns nil if not possible." | |
481 (and commit | |
482 (with-temp-buffer | |
483 (and | |
86403
d2c8f5a27761
(vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
86400
diff
changeset
|
484 (vc-git--out-ok "name-rev" "--name-only" "--tags" commit) |
78355 | 485 (goto-char (point-min)) |
486 (= (forward-line 2) 1) | |
487 (bolp) | |
488 (buffer-substring-no-properties (point-min) (1- (point-max))))))) | |
489 | |
490 (provide 'vc-git) | |
491 | |
492 ;; arch-tag: bd10664a-0e5b-48f5-a877-6c17b135be12 | |
493 ;;; vc-git.el ends here |