annotate lisp/vc-git.el @ 96524:d620ef3acfdc

* vc-git.el (vc-git-registered): Return true for removed files. (vc-git-print-log, vc-git-log-view-mode): Print a single log for all the files instead of one per file. (vc-git-previous-revision): Add support for project-wide previous revision when specified file is nil.
author Alexandre Julliard <julliard@winehq.org>
date Sat, 05 Jul 2008 18:42:07 +0000
parents 5b7442d7d9ce
children f534da0cc0ea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
1 ;;; vc-git.el --- VC backend for the git version control system
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
2
79721
73661ddc7ac7 Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 79687
diff changeset
3 ;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
4
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
5 ;; Author: Alexandre Julliard <julliard@winehq.org>
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
6 ;; Keywords: tools
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
7
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
9
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94572
diff changeset
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94572
diff changeset
12 ;; the Free Software Foundation, either version 3 of the License, or
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94572
diff changeset
13 ;; (at your option) any later version.
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
14
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
18 ;; GNU General Public License for more details.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
19
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94572
diff changeset
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
22
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
23 ;;; Commentary:
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
24
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
25 ;; This file contains a VC backend for the git version control
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
26 ;; system.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
27 ;;
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
28
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
29 ;;; Installation:
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
30
78404
27f00e50116a Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents: 78359
diff changeset
31 ;; To install: put this file on the load-path and add Git to the list
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
32 ;; of supported backends in `vc-handled-backends'; the following line,
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
33 ;; placed in your ~/.emacs, will accomplish this:
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
34 ;;
78404
27f00e50116a Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents: 78359
diff changeset
35 ;; (add-to-list 'vc-handled-backends 'Git)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
36
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
37 ;;; Todo:
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
38 ;; - check if more functions could use vc-git-command instead
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
39 ;; of start-process.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
40 ;; - changelog generation
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
41
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
42 ;; Implement the rest of the vc interface. See the comment at the
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
43 ;; beginning of vc.el. The current status is:
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
44 ;; ("??" means: "figure out what to do about it")
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
45 ;;
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
46 ;; FUNCTION NAME STATUS
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
47 ;; BACKEND PROPERTIES
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
48 ;; * revision-granularity OK
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
49 ;; STATE-QUERYING FUNCTIONS
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
50 ;; * registered (file) OK
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
51 ;; * state (file) OK
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
52 ;; - state-heuristic (file) NOT NEEDED
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
53 ;; * working-revision (file) OK
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
54 ;; - latest-on-branch-p (file) NOT NEEDED
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
55 ;; * checkout-model (files) OK
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
56 ;; - 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
57 ;; - mode-line-string (file) OK
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
58 ;; - prettify-state-info (file) OK
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
59 ;; STATE-CHANGING FUNCTIONS
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
60 ;; * create-repo () OK
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
61 ;; * register (files &optional rev comment) OK
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 85114
diff changeset
62 ;; - init-revision (file) NOT NEEDED
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
63 ;; - responsible-p (file) OK
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
64 ;; - could-register (file) NOT NEEDED, DEFAULT IS GOOD
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
65 ;; - receive-file (file rev) NOT NEEDED
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
66 ;; - unregister (file) OK
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
67 ;; * checkin (files rev comment) OK
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 85114
diff changeset
68 ;; * find-revision (file rev buffer) OK
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
69 ;; * checkout (file &optional editable rev) OK
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
70 ;; * revert (file &optional contents-done) OK
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
71 ;; - rollback (files) COULD BE SUPPORTED
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
72 ;; - merge (file rev1 rev2) It would be possible to merge
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
73 ;; changes into a single file, but when
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
74 ;; committing they wouldn't
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
75 ;; be identified as a merge
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
76 ;; by git, so it's probably
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
77 ;; not a good idea.
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
78 ;; - 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
79 ;; - steal-lock (file &optional revision) NOT NEEDED
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
80 ;; HISTORY FUNCTIONS
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
81 ;; * print-log (files &optional buffer) OK
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
82 ;; - log-view-mode () OK
86397
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
83 ;; - show-log-entry (revision) OK
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
84 ;; - comment-history (file) ??
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
85 ;; - update-changelog (files) COULD BE SUPPORTED
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
86 ;; * diff (file &optional rev1 rev2 buffer) OK
94290
55b13d307a7a (vc-git-status-printer): Deal with directories.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94107
diff changeset
87 ;; - revision-completion-table (files) OK
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
88 ;; - annotate-command (file buf &optional rev) OK
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
89 ;; - annotate-time () OK
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
90 ;; - annotate-current-time () NOT NEEDED
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
91 ;; - annotate-extract-revision-at-line () OK
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
92 ;; TAG SYSTEM
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
93 ;; - create-tag (dir name branchp) OK
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
94 ;; - retrieve-tag (dir name update) OK, needs to update buffers
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
95 ;; MISCELLANEOUS
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
96 ;; - make-version-backups-p (file) NOT NEEDED
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
97 ;; - 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
98 ;; - previous-revision (file rev) OK
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
99 ;; - next-revision (file rev) OK
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
100 ;; - check-headers () COULD BE SUPPORTED
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
101 ;; - clear-headers () NOT NEEDED
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
102 ;; - delete-file (file) OK
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
103 ;; - rename-file (old new) OK
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
104 ;; - find-file-hook () NOT NEEDED
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
105 ;; - find-file-not-found-hook () NOT NEEDED
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
106
94290
55b13d307a7a (vc-git-status-printer): Deal with directories.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94107
diff changeset
107 (eval-when-compile
55b13d307a7a (vc-git-status-printer): Deal with directories.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94107
diff changeset
108 (require 'cl)
55b13d307a7a (vc-git-status-printer): Deal with directories.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94107
diff changeset
109 (require 'vc)
96260
d011b21b3f08 * vc-hg.el:
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96213
diff changeset
110 (require 'vc-dir)
94290
55b13d307a7a (vc-git-status-printer): Deal with directories.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94107
diff changeset
111 (require 'grep))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
112
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
113 (defvar git-commits-coding-system 'utf-8
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
114 "Default coding system for git commits.")
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
115
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
116 ;;; BACKEND PROPERTIES
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
117
94563
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94539
diff changeset
118 (defun vc-git-revision-granularity () 'repository)
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94539
diff changeset
119 (defun vc-git-checkout-model (files) 'implicit)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
120
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
121 ;;; STATE-QUERYING FUNCTIONS
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
122
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
123 ;;;###autoload (defun vc-git-registered (file)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
124 ;;;###autoload "Return non-nil if FILE is registered with git."
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
125 ;;;###autoload (if (vc-find-root file ".git") ; short cut
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
126 ;;;###autoload (progn
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
127 ;;;###autoload (load "vc-git")
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
128 ;;;###autoload (vc-git-registered file))))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
129
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
130 (defun vc-git-registered (file)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
131 "Check whether FILE is registered with git."
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
132 (when (vc-git-root file)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
133 (with-temp-buffer
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
134 (let* ((dir (file-name-directory file))
96524
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
135 (name (file-relative-name file dir))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
136 (str (ignore-errors
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
137 (when dir (cd dir))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
138 (vc-git--out-ok "ls-files" "-c" "-z" "--" name)
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
139 ;; if result is empty, use ls-tree to check for deleted file
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
140 (when (eq (point-min) (point-max))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
141 (vc-git--out-ok "ls-tree" "--name-only" "-z" "HEAD" "--" name))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
142 (buffer-string))))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
143 (and str
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
144 (> (length str) (length name))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
145 (string= (substring str 0 (1+ (length name)))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
146 (concat name "\0")))))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
147
93173
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
148 (defun vc-git--state-code (code)
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
149 "Convert from a string to a added/deleted/modified state."
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
150 (case (string-to-char code)
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
151 (?M 'edited)
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
152 (?A 'added)
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
153 (?D 'removed)
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
154 (?U 'edited) ;; FIXME
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
155 (?T 'edited))) ;; FIXME
019e6794fecf (vc-git-after-dir-status-stage1): Move state matching
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93146
diff changeset
156
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
157 (defun vc-git-state (file)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
158 "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
159 ;; FIXME: This can't set 'ignored yet
94521
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
160 (if (not (vc-git-registered file))
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
161 'unregistered
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
162 (vc-git--call nil "add" "--refresh" "--" (file-relative-name file))
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
163 (let ((diff (vc-git--run-command-string file "diff-index" "-z" "HEAD" "--")))
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
164 (if (and diff (string-match ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} \\([ADMUT]\\)\0[^\0]+\0"
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
165 diff))
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
166 (vc-git--state-code (match-string 1 diff))
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
167 (if (vc-git--empty-db-p) 'added 'up-to-date)))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
168
87525
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
169 (defun vc-git--ls-files-state (state &rest args)
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
170 "Set state to STATE on all files found with git-ls-files ARGS."
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
171 (with-temp-buffer
87525
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
172 (apply 'vc-git-command (current-buffer) nil nil "ls-files" "-z" args)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
173 (goto-char (point-min))
87525
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
174 (let ((start (point)))
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
175 (while (search-forward "\0" nil t)
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
176 (let ((file (expand-file-name
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
177 (buffer-substring-no-properties start (1- (point))))))
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
178 (vc-file-setprop file 'vc-backend (if state 'Git 'none))
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
179 (vc-file-setprop file 'vc-state state))
77d4b0e5e5d2 * vc-git.el (vc-git--ls-files-state): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87516
diff changeset
180 (setq start (point))))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
181
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 85114
diff changeset
182 (defun vc-git-working-revision (file)
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 85114
diff changeset
183 "Git-specific version of `vc-working-revision'."
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
184 (let ((str (with-output-to-string
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
185 (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
186 (vc-git--out-ok "symbolic-ref" "HEAD")))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
187 (if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
188 (match-string 2 str)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
189 str)))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
190
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
191 (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
192 (eq 'up-to-date (vc-git-state file)))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
193
82843
768766d373a7 * vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 82245
diff changeset
194 (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
195 "Return string for placement into the modeline for FILE."
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 85114
diff changeset
196 (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
197 (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
198 (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
199 (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
200 (propertize
768766d373a7 * vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 82245
diff changeset
201 (concat def-ml "!")
768766d373a7 * vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 82245
diff changeset
202 '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
203 (propertize def-ml
768766d373a7 * vc-git.el (vc-git-mode-line-string): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 82245
diff changeset
204 '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
205
93426
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
206 (defstruct (vc-git-extra-fileinfo
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
207 (:copier nil)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
208 (:constructor vc-git-create-extra-fileinfo (old-perm new-perm &optional rename-state orig-name))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
209 (:conc-name vc-git-extra-fileinfo->))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
210 old-perm new-perm ;; permission flags
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
211 rename-state ;; rename or copy state
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
212 orig-name) ;; original name for renames or copies
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
213
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
214 (defun vc-git-escape-file-name (name)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
215 "Escape a file name if necessary."
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
216 (if (string-match "[\n\t\"\\]" name)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
217 (concat "\""
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
218 (mapconcat (lambda (c)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
219 (case c
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
220 (?\n "\\n")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
221 (?\t "\\t")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
222 (?\\ "\\\\")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
223 (?\" "\\\"")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
224 (t (char-to-string c))))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
225 name "")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
226 "\"")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
227 name))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
228
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
229 (defun vc-git-file-type-as-string (old-perm new-perm)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
230 "Return a string describing the file type based on its permissions."
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
231 (let* ((old-type (lsh (or old-perm 0) -9))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
232 (new-type (lsh (or new-perm 0) -9))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
233 (str (case new-type
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
234 (?\100 ;; file
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
235 (case old-type
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
236 (?\100 nil)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
237 (?\120 " (type change symlink -> file)")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
238 (?\160 " (type change subproject -> file)")))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
239 (?\120 ;; symlink
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
240 (case old-type
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
241 (?\100 " (type change file -> symlink)")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
242 (?\160 " (type change subproject -> symlink)")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
243 (t " (symlink)")))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
244 (?\160 ;; subproject
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
245 (case old-type
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
246 (?\100 " (type change file -> subproject)")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
247 (?\120 " (type change symlink -> subproject)")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
248 (t " (subproject)")))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
249 (?\110 nil) ;; directory (internal, not a real git state)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
250 (?\000 ;; deleted or unknown
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
251 (case old-type
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
252 (?\120 " (symlink)")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
253 (?\160 " (subproject)")))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
254 (t (format " (unknown type %o)" new-type)))))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
255 (cond (str (propertize str 'face 'font-lock-comment-face))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
256 ((eq new-type ?\110) "/")
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
257 (t ""))))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
258
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
259 (defun vc-git-rename-as-string (state extra)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
260 "Return a string describing the copy or rename associated with INFO, or an empty string if none."
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
261 (let ((rename-state (when extra
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
262 (vc-git-extra-fileinfo->rename-state extra))))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
263 (if rename-state
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
264 (propertize
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
265 (concat " ("
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
266 (if (eq rename-state 'copy) "copied from "
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
267 (if (eq state 'added) "renamed from "
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
268 "renamed to "))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
269 (vc-git-escape-file-name (vc-git-extra-fileinfo->orig-name extra))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
270 ")") 'face 'font-lock-comment-face)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
271 "")))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
272
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
273 (defun vc-git-permissions-as-string (old-perm new-perm)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
274 "Format a permission change as string."
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
275 (propertize
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
276 (if (or (not old-perm)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
277 (not new-perm)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
278 (eq 0 (logand ?\111 (logxor old-perm new-perm))))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
279 " "
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
280 (if (eq 0 (logand ?\111 old-perm)) "+x" "-x"))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
281 'face 'font-lock-type-face))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
282
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
283 (defun vc-git-status-printer (info)
94107
5d2bbe3fd618 Rename vc-status to vc-dir.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94060
diff changeset
284 "Pretty-printer for the vc-dir-fileinfo structure."
94290
55b13d307a7a (vc-git-status-printer): Deal with directories.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94107
diff changeset
285 (let* ((state (if (vc-dir-fileinfo->directory info)
55b13d307a7a (vc-git-status-printer): Deal with directories.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94107
diff changeset
286 'DIRECTORY
55b13d307a7a (vc-git-status-printer): Deal with directories.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94107
diff changeset
287 (vc-dir-fileinfo->state info)))
94107
5d2bbe3fd618 Rename vc-status to vc-dir.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94060
diff changeset
288 (extra (vc-dir-fileinfo->extra info))
93426
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
289 (old-perm (when extra (vc-git-extra-fileinfo->old-perm extra)))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
290 (new-perm (when extra (vc-git-extra-fileinfo->new-perm extra))))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
291 (insert
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
292 " "
94107
5d2bbe3fd618 Rename vc-status to vc-dir.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94060
diff changeset
293 (propertize (format "%c" (if (vc-dir-fileinfo->marked info) ?* ? ))
93426
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
294 'face 'font-lock-type-face)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
295 " "
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
296 (propertize
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
297 (format "%-12s" state)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
298 'face (cond ((eq state 'up-to-date) 'font-lock-builtin-face)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
299 ((eq state 'missing) 'font-lock-warning-face)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
300 (t 'font-lock-variable-name-face))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
301 'mouse-face 'highlight)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
302 " " (vc-git-permissions-as-string old-perm new-perm)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
303 " "
94107
5d2bbe3fd618 Rename vc-status to vc-dir.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94060
diff changeset
304 (propertize (vc-git-escape-file-name (vc-dir-fileinfo->name info))
93426
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
305 'face 'font-lock-function-name-face
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
306 'mouse-face 'highlight)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
307 (vc-git-file-type-as-string old-perm new-perm)
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
308 (vc-git-rename-as-string state extra))))
912e50ecb992 * vc-git.el: Make vc-status display information about copies,
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
309
94060
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
310 (defun vc-git-after-dir-status-stage (stage files update-function)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
311 "Process sentinel for the various dir-status stages."
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
312 (let (remaining next-stage result)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
313 (goto-char (point-min))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
314 (case stage
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
315 ('update-index
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
316 (setq next-stage (if (vc-git--empty-db-p) 'ls-files-added
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
317 (if files 'ls-files-up-to-date 'diff-index))))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
318 ('ls-files-added
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
319 (setq next-stage 'ls-files-unknown)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
320 (while (re-search-forward "\\([0-7]\\{6\\}\\) [0-9a-f]\\{40\\} 0\t\\([^\0]+\\)\0" nil t)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
321 (let ((new-perm (string-to-number (match-string 1) 8))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
322 (name (match-string 2)))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
323 (push (list name 'added (vc-git-create-extra-fileinfo 0 new-perm)) result))))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
324 ('ls-files-up-to-date
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
325 (setq next-stage 'diff-index)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
326 (while (re-search-forward "\\([0-7]\\{6\\}\\) [0-9a-f]\\{40\\} 0\t\\([^\0]+\\)\0" nil t)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
327 (let ((perm (string-to-number (match-string 1) 8))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
328 (name (match-string 2)))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
329 (push (list name 'up-to-date (vc-git-create-extra-fileinfo perm perm)) result))))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
330 ('ls-files-unknown
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
331 (when files (setq next-stage 'ls-files-ignored))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
332 (while (re-search-forward "\\([^\0]*?\\)\0" nil t 1)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
333 (push (list (match-string 1) 'unregistered (vc-git-create-extra-fileinfo 0 0)) result)))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
334 ('ls-files-ignored
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
335 (while (re-search-forward "\\([^\0]*?\\)\0" nil t 1)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
336 (push (list (match-string 1) 'ignored (vc-git-create-extra-fileinfo 0 0)) result)))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
337 ('diff-index
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
338 (setq next-stage 'ls-files-unknown)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
339 (while (re-search-forward
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
340 ":\\([0-7]\\{6\\}\\) \\([0-7]\\{6\\}\\) [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} \\(\\([ADMUT]\\)\0\\([^\0]+\\)\\|\\([CR]\\)[0-9]*\0\\([^\0]+\\)\0\\([^\0]+\\)\\)\0"
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
341 nil t 1)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
342 (let ((old-perm (string-to-number (match-string 1) 8))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
343 (new-perm (string-to-number (match-string 2) 8))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
344 (state (or (match-string 4) (match-string 6)))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
345 (name (or (match-string 5) (match-string 7)))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
346 (new-name (match-string 8)))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
347 (if new-name ; copy or rename
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
348 (if (eq ?C (string-to-char state))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
349 (push (list new-name 'added (vc-git-create-extra-fileinfo old-perm new-perm 'copy name)) result)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
350 (push (list name 'removed (vc-git-create-extra-fileinfo 0 0 'rename new-name)) result)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
351 (push (list new-name 'added (vc-git-create-extra-fileinfo old-perm new-perm 'rename name)) result))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
352 (push (list name (vc-git--state-code state) (vc-git-create-extra-fileinfo old-perm new-perm)) result))))))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
353 (when result
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
354 (setq result (nreverse result))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
355 (when files
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
356 (dolist (entry result) (setq files (delete (car entry) files)))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
357 (unless files (setq next-stage nil))))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
358 (when (or result (not next-stage)) (funcall update-function result next-stage))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
359 (when next-stage (vc-git-dir-status-goto-stage next-stage files update-function))))
93123
38f18130d057 (vc-git-status-result): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93122
diff changeset
360
94060
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
361 (defun vc-git-dir-status-goto-stage (stage files update-function)
93123
38f18130d057 (vc-git-status-result): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93122
diff changeset
362 (erase-buffer)
94060
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
363 (case stage
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
364 ('update-index
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
365 (if files
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
366 (vc-git-command (current-buffer) 'async files "add" "--refresh" "--")
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
367 (vc-git-command (current-buffer) 'async nil "update-index" "--refresh")))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
368 ('ls-files-added
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
369 (vc-git-command (current-buffer) 'async files "ls-files" "-z" "-c" "-s" "--"))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
370 ('ls-files-up-to-date
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
371 (vc-git-command (current-buffer) 'async files "ls-files" "-z" "-c" "-s" "--"))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
372 ('ls-files-unknown
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
373 (vc-git-command (current-buffer) 'async files "ls-files" "-z" "-o"
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
374 "--directory" "--no-empty-directory" "--exclude-standard" "--"))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
375 ('ls-files-ignored
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
376 (vc-git-command (current-buffer) 'async files "ls-files" "-z" "-o" "-i"
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
377 "--directory" "--no-empty-directory" "--exclude-standard" "--"))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
378 ('diff-index
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
379 (vc-git-command (current-buffer) 'async files "diff-index" "-z" "-M" "HEAD" "--")))
93123
38f18130d057 (vc-git-status-result): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93122
diff changeset
380 (vc-exec-after
94060
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
381 `(vc-git-after-dir-status-stage (quote ,stage) (quote ,files) (quote ,update-function))))
93146
c73e70274c0c (vc-git--empty-db-p)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93145
diff changeset
382
94003
2ecb2ea8d5b5 Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93426
diff changeset
383 (defun vc-git-dir-status (dir update-function)
94060
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
384 "Return a list of (FILE STATE EXTRA) entries for DIR."
93122
ab6a0ec29e00 (vc-git-after-dir-status): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93118
diff changeset
385 ;; Further things that would have to be fixed later:
ab6a0ec29e00 (vc-git-after-dir-status): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93118
diff changeset
386 ;; - how to handle unregistered directories
94107
5d2bbe3fd618 Rename vc-status to vc-dir.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94060
diff changeset
387 ;; - how to support vc-dir on a subdir of the project tree
94060
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
388 (vc-git-dir-status-goto-stage 'update-index nil update-function))
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
389
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
390 (defun vc-git-dir-status-files (dir files default-state update-function)
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
391 "Return a list of (FILE STATE EXTRA) entries for FILES in DIR."
6c138603231c (vc-git-after-dir-status-stage)
Alexandre Julliard <julliard@winehq.org>
parents: 94003
diff changeset
392 (vc-git-dir-status-goto-stage 'update-index files update-function))
91929
3299b785d830 (vc-git-after-dir-status, vc-git-dir-status): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 87649
diff changeset
393
93333
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
394 (defun vc-git-status-extra-headers (dir)
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
395 (let ((str (with-output-to-string
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
396 (with-current-buffer standard-output
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
397 (vc-git--out-ok "symbolic-ref" "HEAD")))))
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
398 (concat
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
399 (propertize "Branch : " 'face 'font-lock-type-face)
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
400 (propertize
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
401 (if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str)
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
402 (match-string 2 str)
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
403 "not (detached HEAD)")
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
404 'face 'font-lock-variable-name-face))))
53eee5c271f4 * vc.el: Add new backend function 'status-extra-headers.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93240
diff changeset
405
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
406 ;;; STATE-CHANGING FUNCTIONS
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
407
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
408 (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
409 "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
410 (vc-git-command nil 0 nil "init"))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
411
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
412 (defun vc-git-register (files &optional rev comment)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
413 "Register FILE into the git version-control system."
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
414 (vc-git-command nil 0 files "update-index" "--add" "--"))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
415
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
416 (defalias 'vc-git-responsible-p 'vc-git-root)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
417
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
418 (defun vc-git-unregister (file)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
419 (vc-git-command nil 0 file "rm" "-f" "--cached" "--"))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
420
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
421
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
422 (defun vc-git-checkin (files rev comment)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
423 (let ((coding-system-for-write git-commits-coding-system))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
424 (vc-git-command nil 0 files "commit" "-m" comment "--only" "--")))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
425
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 85114
diff changeset
426 (defun vc-git-find-revision (file rev buffer)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
427 (let ((coding-system-for-read 'binary)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
428 (coding-system-for-write 'binary)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
429 (fullname (substring
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
430 (vc-git--run-command-string
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
431 file "ls-files" "-z" "--full-name" "--")
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
432 0 -1)))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
433 (vc-git-command
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
434 buffer 0
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
435 (concat (if rev rev "HEAD") ":" fullname) "cat-file" "blob")))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
436
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
437 (defun vc-git-checkout (file &optional editable rev)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
438 (vc-git-command nil 0 file "checkout" (or rev "HEAD")))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
439
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
440 (defun vc-git-revert (file &optional contents-done)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
441 "Revert FILE to the version stored in the git repository."
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
442 (if contents-done
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
443 (vc-git-command nil 0 file "update-index" "--")
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
444 (vc-git-command nil 0 file "checkout" "HEAD")))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
445
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
446 ;;; HISTORY FUNCTIONS
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
447
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
448 (defun vc-git-print-log (files &optional buffer)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
449 "Get change log associated with FILES."
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
450 (let ((coding-system-for-read git-commits-coding-system)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
451 ;; Support both the old print-log interface that passes a
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
452 ;; single file, and the new one that passes a file list.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
453 (flist (if (listp files) files (list files))))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
454 ;; `vc-do-command' creates the buffer, but we need it before running
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
455 ;; the command.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
456 (vc-setup-buffer buffer)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
457 ;; If the buffer exists from a previous invocation it might be
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
458 ;; read-only.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
459 (let ((inhibit-read-only t))
96524
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
460 (with-current-buffer
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
461 buffer
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
462 (vc-git-command buffer 'async files
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
463 "rev-list" "--pretty" "HEAD" "--")))))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
464
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
465 (defvar log-view-message-re)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
466 (defvar log-view-file-re)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
467 (defvar log-view-font-lock-keywords)
96524
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
468 (defvar log-view-per-file-logs)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
469
78404
27f00e50116a Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents: 78359
diff changeset
470 (define-derived-mode vc-git-log-view-mode log-view-mode "Git-Log-View"
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
471 (require 'add-log) ;; we need the faces add-log
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
472 ;; Don't have file markers, so use impossible regexp.
96524
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
473 (set (make-local-variable 'log-view-file-re) "\\`a\\`")
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
474 (set (make-local-variable 'log-view-per-file-logs) nil)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
475 (set (make-local-variable 'log-view-message-re)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
476 "^commit *\\([0-9a-z]+\\)")
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
477 (set (make-local-variable 'log-view-font-lock-keywords)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
478 (append
96524
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
479 `((,log-view-message-re (1 'change-log-acknowledgement)))
86400
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
480 ;; Handle the case:
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
481 ;; user: foo@bar
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
482 '(("^Author:[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)"
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
483 (1 'change-log-email))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
484 ;; Handle the case:
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
485 ;; user: FirstName LastName <foo@bar>
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
486 ("^Author:[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]"
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
487 (1 'change-log-name)
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
488 (2 'change-log-email))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
489 ("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)"
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
490 (1 'change-log-name))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
491 ("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]"
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
492 (1 'change-log-name)
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
493 (2 'change-log-email))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
494 ("^Merge: \\([0-9a-z]+\\) \\([0-9a-z]+\\)"
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
495 (1 'change-log-acknowledgement)
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
496 (2 'change-log-acknowledgement))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
497 ("^Date: \\(.+\\)" (1 'change-log-date))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
498 ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message))))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
499
86397
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
500 (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
501 "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
502 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
503 or BRANCH^ (where \"^\" can be repeated)."
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
504 (goto-char (point-min))
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
505 (search-forward "\ncommit" nil t
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
506 (cond ((string-match "~\\([0-9]\\)$" revision)
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
507 (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
508 ((string-match "\\^+$" revision)
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
509 (1+ (length (match-string 0 revision))))
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
510 (t nil)))
38193bd1ab69 (vc-git-show-log-entry): New func.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 85462
diff changeset
511 (beginning-of-line))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
512
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
513 (defun vc-git-diff (files &optional rev1 rev2 buffer)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
514 (let ((buf (or buffer "*vc-diff*")))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
515 (if (and rev1 rev2)
86400
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
516 (vc-git-command buf 1 files "diff-tree" "--exit-code" "-p"
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
517 rev1 rev2 "--")
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
518 (vc-git-command buf 1 files "diff-index" "--exit-code" "-p"
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
519 (or rev1 "HEAD") "--"))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
520
85459
dec6fdd5ddf4 (vc-git-revision-completion-table, vc-git-revision-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85141
diff changeset
521 (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
522 ;; What about `files'?!? --Stef
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
523 (let ((table (list "HEAD")))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
524 (with-temp-buffer
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
525 (vc-git-command t nil nil "for-each-ref" "--format=%(refname)")
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
526 (goto-char (point-min))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
527 (while (re-search-forward "^refs/\\(heads\\|tags\\)/\\(.*\\)$" nil t)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
528 (push (match-string 2) table)))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
529 table))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
530
85459
dec6fdd5ddf4 (vc-git-revision-completion-table, vc-git-revision-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85141
diff changeset
531 (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
532 (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
533 table)
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78356
diff changeset
534 (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
535 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
536 table))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
537
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
538 (defun vc-git-annotate-command (file buf &optional rev)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
539 (let ((name (file-relative-name file)))
96487
5b7442d7d9ce 2008-07-02 Magnus Henoch <mange@freemail.hu>
Magnus Henoch <mange@freemail.hu>
parents: 96260
diff changeset
540 (vc-git-command buf 0 name "blame" rev)))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
541
96213
09da7727f35f * vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95020
diff changeset
542 (declare-function vc-annotate-convert-time "vc-annotate" (time))
09da7727f35f * vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95020
diff changeset
543
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
544 (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
545 (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
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
546 (vc-annotate-convert-time
86400
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
547 (apply #'encode-time (mapcar (lambda (match)
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
548 (string-to-number (match-string match)))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
549 '(6 5 4 3 2 1 7))))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
550
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
551 (defun vc-git-annotate-extract-revision-at-line ()
86400
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
552 (save-excursion
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
553 (move-beginning-of-line 1)
93145
9a34bf3a4363 (vc-git-annotate-extract-revision-at-line):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
554 (and (looking-at "[0-9a-f^][0-9a-f]+")
86400
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
555 (buffer-substring-no-properties (match-beginning 0) (match-end 0)))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
556
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
557 ;;; TAG SYSTEM
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
558
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
559 (defun vc-git-create-tag (dir name branchp)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
560 (let ((default-directory dir))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
561 (and (vc-git-command nil 0 nil "update-index" "--refresh")
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
562 (if branchp
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
563 (vc-git-command nil 0 nil "checkout" "-b" name)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
564 (vc-git-command nil 0 nil "tag" name)))))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
565
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
566 (defun vc-git-retrieve-tag (dir name update)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
567 (let ((default-directory dir))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
568 (vc-git-command nil 0 nil "checkout" name)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
569 ;; FIXME: update buffers if `update' is true
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
570 ))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
571
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
572
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
573 ;;; MISCELLANEOUS
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
574
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
575 (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
576 "Git-specific version of `vc-previous-revision'."
96524
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
577 (if file
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
578 (let ((default-directory (file-name-directory (expand-file-name file)))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
579 (file (file-name-nondirectory file)))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
580 (vc-git-symbolic-commit
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
581 (with-temp-buffer
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
582 (and
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
583 (vc-git--out-ok "rev-list" "-2" rev "--" file)
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
584 (goto-char (point-max))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
585 (bolp)
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
586 (zerop (forward-line -1))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
587 (not (bobp))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
588 (buffer-substring-no-properties
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
589 (point)
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
590 (1- (point-max)))))))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
591 (with-temp-buffer
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
592 (and
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
593 (vc-git--out-ok "rev-parse" (concat rev "^"))
d620ef3acfdc * vc-git.el (vc-git-registered): Return true for removed files.
Alexandre Julliard <julliard@winehq.org>
parents: 96487
diff changeset
594 (buffer-substring-no-properties (point-min) (+ (point-min) 40))))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
595
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
596 (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
597 "Git-specific version of `vc-next-revision'."
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
598 (let* ((default-directory (file-name-directory
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
599 (expand-file-name file)))
86400
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
600 (file (file-name-nondirectory file))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
601 (current-rev
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
602 (with-temp-buffer
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
603 (and
86403
d2c8f5a27761 (vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86400
diff changeset
604 (vc-git--out-ok "rev-list" "-1" rev "--" file)
86400
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
605 (goto-char (point-max))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
606 (bolp)
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
607 (zerop (forward-line -1))
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
608 (bobp)
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
609 (buffer-substring-no-properties
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
610 (point)
fdd891feb624 Refill; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86397
diff changeset
611 (1- (point-max)))))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
612 (and current-rev
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
613 (vc-git-symbolic-commit
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
614 (with-temp-buffer
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
615 (and
86403
d2c8f5a27761 (vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86400
diff changeset
616 (vc-git--out-ok "rev-list" "HEAD" "--" file)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
617 (goto-char (point-min))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
618 (search-forward current-rev nil t)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
619 (zerop (forward-line -1))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
620 (buffer-substring-no-properties
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
621 (point)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
622 (progn (forward-line 1) (1- (point))))))))))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
623
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
624 (defun vc-git-delete-file (file)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
625 (vc-git-command nil 0 file "rm" "-f" "--"))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
626
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
627 (defun vc-git-rename-file (old new)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
628 (vc-git-command nil 0 (list old new) "mv" "-f" "--"))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
629
93240
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
630 (defvar vc-git-extra-menu-map
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
631 (let ((map (make-sparse-keymap)))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
632 (define-key map [git-grep]
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
633 '(menu-item "Git grep..." vc-git-grep
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
634 :help "Run the `git grep' command"))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
635 map))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
636
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
637 (defun vc-git-extra-menu () vc-git-extra-menu-map)
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
638
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
639 (defun vc-git-extra-status-menu () vc-git-extra-menu-map)
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
640
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
641 ;; Derived from `lgrep'.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
642 (defun vc-git-grep (regexp &optional files dir)
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
643 "Run git grep, searching for REGEXP in FILES in directory DIR.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
644 The search is limited to file names matching shell pattern FILES.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
645 FILES may use abbreviations defined in `grep-files-aliases', e.g.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
646 entering `ch' is equivalent to `*.[ch]'.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
647
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
648 With \\[universal-argument] prefix, you can edit the constructed shell command line
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
649 before it is executed.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
650 With two \\[universal-argument] prefixes, directly edit and run `grep-command'.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
651
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
652 Collect output in a buffer. While git grep runs asynchronously, you
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
653 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
654 in the grep output buffer,
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
655 to go to the lines where grep found matches.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
656
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
657 This command shares argument histories with \\[rgrep] and \\[grep]."
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
658 (interactive
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
659 (progn
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
660 (grep-compute-defaults)
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
661 (cond
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
662 ((equal current-prefix-arg '(16))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
663 (list (read-from-minibuffer "Run: " "git grep"
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
664 nil nil 'grep-history)
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
665 nil))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
666 (t (let* ((regexp (grep-read-regexp))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
667 (files (grep-read-files regexp))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
668 (dir (read-directory-name "In directory: "
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
669 nil default-directory t)))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
670 (list regexp files dir))))))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
671 (require 'grep)
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
672 (when (and (stringp regexp) (> (length regexp) 0))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
673 (let ((command regexp))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
674 (if (null files)
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
675 (if (string= command "git grep")
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
676 (setq command nil))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
677 (setq dir (file-name-as-directory (expand-file-name dir)))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
678 (setq command
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
679 (grep-expand-template "git grep -n -e <R> -- <F>" regexp files))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
680 (when command
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
681 (if (equal current-prefix-arg '(4))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
682 (setq command
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
683 (read-from-minibuffer "Confirm: "
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
684 command nil nil 'grep-history))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
685 (add-to-history 'grep-history command))))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
686 (when command
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
687 (let ((default-directory dir)
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
688 (compilation-environment '("PAGER=")))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
689 ;; Setting process-setup-function makes exit-message-function work
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
690 ;; even when async processes aren't supported.
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
691 (compilation-start command 'grep-mode))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
692 (if (eq next-error-last-buffer (current-buffer))
231f72336aed (vc-git-extra-menu-map): New key map.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93173
diff changeset
693 (setq default-directory dir))))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
694
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
695 ;;; Internal commands
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
696
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
697 (defun vc-git-root (file)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
698 (vc-find-root file ".git"))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
699
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
700 (defun vc-git-command (buffer okstatus file-or-list &rest flags)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
701 "A wrapper around `vc-do-command' for use in vc-git.el.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
702 The difference to vc-do-command is that this function always invokes `git'."
94847
5e64dca662f0 Remove assumption about what nil means as a first arument to vc-do-command.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94806
diff changeset
703 (apply 'vc-do-command (or buffer "*vc*") okstatus "git" file-or-list flags))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
704
93146
c73e70274c0c (vc-git--empty-db-p)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93145
diff changeset
705 (defun vc-git--empty-db-p ()
c73e70274c0c (vc-git--empty-db-p)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93145
diff changeset
706 "Check if the git db is empty (no commit done yet)."
c73e70274c0c (vc-git--empty-db-p)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93145
diff changeset
707 (not (eq 0 (vc-git--call nil "rev-parse" "--verify" "HEAD"))))
c73e70274c0c (vc-git--empty-db-p)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93145
diff changeset
708
86403
d2c8f5a27761 (vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86400
diff changeset
709 (defun vc-git--call (buffer command &rest args)
87648
7ae99e295dfd * vc-git.el (vc-git--call): Apply `process-file' instead of
Michael Albinus <michael.albinus@gmx.de>
parents: 87525
diff changeset
710 ;; We don't need to care the arguments. If there is a file name, it
7ae99e295dfd * vc-git.el (vc-git--call): Apply `process-file' instead of
Michael Albinus <michael.albinus@gmx.de>
parents: 87525
diff changeset
711 ;; is always a relative one. This works also for remote
7ae99e295dfd * vc-git.el (vc-git--call): Apply `process-file' instead of
Michael Albinus <michael.albinus@gmx.de>
parents: 87525
diff changeset
712 ;; directories.
7ae99e295dfd * vc-git.el (vc-git--call): Apply `process-file' instead of
Michael Albinus <michael.albinus@gmx.de>
parents: 87525
diff changeset
713 (apply 'process-file "git" nil buffer nil command args))
86403
d2c8f5a27761 (vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86400
diff changeset
714
d2c8f5a27761 (vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86400
diff changeset
715 (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
716 (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
717
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
718 (defun vc-git--run-command-string (file &rest args)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
719 "Run a git command on FILE and return its output as string."
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
720 (let* ((ok t)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
721 (str (with-output-to-string
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
722 (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
723 (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
724 (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
725 file))))
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
726 (setq ok nil))))))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
727 (and ok str)))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
728
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
729 (defun vc-git-symbolic-commit (commit)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
730 "Translate COMMIT string into symbolic form.
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
731 Returns nil if not possible."
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
732 (and commit
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
733 (with-temp-buffer
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
734 (and
86403
d2c8f5a27761 (vc-git--call, vc-git--out-ok): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 86400
diff changeset
735 (vc-git--out-ok "name-rev" "--name-only" "--tags" commit)
78355
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
736 (goto-char (point-min))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
737 (= (forward-line 2) 1)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
738 (bolp)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
739 (buffer-substring-no-properties (point-min) (1- (point-max)))))))
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
740
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
741 (provide 'vc-git)
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
742
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
743 ;; arch-tag: bd10664a-0e5b-48f5-a877-6c17b135be12
c6e2dfb349be New File.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff changeset
744 ;;; vc-git.el ends here