2012-04-26 03:18:47 +00:00
|
|
|
|
;;; vc-git.el --- VC backend for the git version control system -*- lexical-binding: t -*-
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2019-01-01 00:59:58 +00:00
|
|
|
|
;; Copyright (C) 2006-2019 Free Software Foundation, Inc.
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-07-23 20:51:02 +00:00
|
|
|
|
;; Author: Alexandre Julliard <julliard@winehq.org>
|
* lisp/finder.el (finder-known-keywords): Add keyword "vc"
for version control.
* add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
* emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
* vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
* vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
2010-06-11 19:09:57 +00:00
|
|
|
|
;; Keywords: vc tools
|
2010-08-29 16:17:13 +00:00
|
|
|
|
;; Package: vc
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2007-07-22 19:46:04 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; This file contains a VC backend for the git version control
|
|
|
|
|
;; system.
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
;;; Installation:
|
|
|
|
|
|
2007-08-03 04:57:05 +00:00
|
|
|
|
;; To install: put this file on the load-path and add Git to the list
|
2007-07-22 19:46:04 +00:00
|
|
|
|
;; of supported backends in `vc-handled-backends'; the following line,
|
2012-09-17 05:41:04 +00:00
|
|
|
|
;; placed in your init file, will accomplish this:
|
2007-07-22 19:46:04 +00:00
|
|
|
|
;;
|
2007-08-03 04:57:05 +00:00
|
|
|
|
;; (add-to-list 'vc-handled-backends 'Git)
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
|
|
|
|
;;; Todo:
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;; - check if more functions could use vc-git-command instead
|
|
|
|
|
;; of start-process.
|
2007-07-22 19:46:04 +00:00
|
|
|
|
;; - changelog generation
|
2007-07-22 21:16:34 +00:00
|
|
|
|
|
|
|
|
|
;; Implement the rest of the vc interface. See the comment at the
|
|
|
|
|
;; beginning of vc.el. The current status is:
|
2007-07-24 13:15:04 +00:00
|
|
|
|
;; ("??" means: "figure out what to do about it")
|
2007-07-22 19:46:04 +00:00
|
|
|
|
;;
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; FUNCTION NAME STATUS
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;; BACKEND PROPERTIES
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; * revision-granularity OK
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;; STATE-QUERYING FUNCTIONS
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; * registered (file) OK
|
|
|
|
|
;; * state (file) OK
|
2014-12-02 15:10:55 +00:00
|
|
|
|
;; - dir-status-files (dir files uf) OK
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; * working-revision (file) OK
|
|
|
|
|
;; * checkout-model (files) OK
|
|
|
|
|
;; - mode-line-string (file) OK
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;; STATE-CHANGING FUNCTIONS
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; * create-repo () OK
|
|
|
|
|
;; * register (files &optional rev comment) OK
|
|
|
|
|
;; - responsible-p (file) OK
|
|
|
|
|
;; - receive-file (file rev) NOT NEEDED
|
|
|
|
|
;; - unregister (file) OK
|
|
|
|
|
;; * checkin (files rev comment) OK
|
|
|
|
|
;; * find-revision (file rev buffer) OK
|
2014-11-20 08:52:24 +00:00
|
|
|
|
;; * checkout (file &optional rev) OK
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; * revert (file &optional contents-done) OK
|
2014-12-02 01:00:40 +00:00
|
|
|
|
;; - merge-file (file rev1 rev2) It would be possible to merge
|
2010-03-06 04:05:47 +00:00
|
|
|
|
;; changes into a single file, but
|
|
|
|
|
;; when committing they wouldn't
|
2008-05-15 17:38:50 +00:00
|
|
|
|
;; be identified as a merge
|
|
|
|
|
;; by git, so it's probably
|
|
|
|
|
;; not a good idea.
|
2014-12-02 01:00:40 +00:00
|
|
|
|
;; - merge-news (file) see `merge-file'
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; - steal-lock (file &optional revision) NOT NEEDED
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;; HISTORY FUNCTIONS
|
2009-12-07 09:02:11 +00:00
|
|
|
|
;; * print-log (files buffer &optional shortlog start-revision limit) OK
|
2019-07-24 23:21:28 +00:00
|
|
|
|
;; * log-outgoing (buffer remote-location) OK
|
|
|
|
|
;; * log-incoming (buffer remote-location) OK
|
|
|
|
|
;; - log-search (buffer pattern) OK
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; - log-view-mode () OK
|
|
|
|
|
;; - show-log-entry (revision) OK
|
|
|
|
|
;; - comment-history (file) ??
|
|
|
|
|
;; - update-changelog (files) COULD BE SUPPORTED
|
2014-12-14 10:49:08 +00:00
|
|
|
|
;; * diff (file &optional rev1 rev2 buffer async) OK
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; - revision-completion-table (files) OK
|
|
|
|
|
;; - annotate-command (file buf &optional rev) OK
|
|
|
|
|
;; - annotate-time () OK
|
|
|
|
|
;; - annotate-current-time () NOT NEEDED
|
|
|
|
|
;; - annotate-extract-revision-at-line () OK
|
2008-05-15 17:38:50 +00:00
|
|
|
|
;; TAG SYSTEM
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; - create-tag (dir name branchp) OK
|
|
|
|
|
;; - retrieve-tag (dir name update) OK
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;; MISCELLANEOUS
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; - make-version-backups-p (file) NOT NEEDED
|
|
|
|
|
;; - previous-revision (file rev) OK
|
|
|
|
|
;; - next-revision (file rev) OK
|
|
|
|
|
;; - check-headers () COULD BE SUPPORTED
|
|
|
|
|
;; - delete-file (file) OK
|
|
|
|
|
;; - rename-file (old new) OK
|
2014-08-13 08:42:33 +00:00
|
|
|
|
;; - find-file-hook () OK
|
2014-08-13 08:05:45 +00:00
|
|
|
|
;; - conflicted-files OK
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2013-07-30 00:25:31 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(require 'cl-lib)
|
2008-04-23 04:07:11 +00:00
|
|
|
|
(eval-when-compile
|
2019-03-25 21:45:31 +00:00
|
|
|
|
(require 'subr-x) ; for string-trim-right
|
2008-04-23 04:07:11 +00:00
|
|
|
|
(require 'vc)
|
2018-02-23 01:47:26 +00:00
|
|
|
|
(require 'vc-dir))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2012-02-25 04:29:09 +00:00
|
|
|
|
(defgroup vc-git nil
|
|
|
|
|
"VC Git backend."
|
|
|
|
|
:version "24.1"
|
|
|
|
|
:group 'vc)
|
|
|
|
|
|
2008-11-26 02:55:28 +00:00
|
|
|
|
(defcustom vc-git-diff-switches t
|
2008-12-03 07:36:53 +00:00
|
|
|
|
"String or list of strings specifying switches for Git diff under VC.
|
|
|
|
|
If nil, use the value of `vc-diff-switches'. If t, use no switches."
|
2008-11-26 02:55:28 +00:00
|
|
|
|
:type '(choice (const :tag "Unspecified" nil)
|
|
|
|
|
(const :tag "None" t)
|
|
|
|
|
(string :tag "Argument String")
|
2008-12-03 07:36:53 +00:00
|
|
|
|
(repeat :tag "Argument List" :value ("") string))
|
2015-05-16 14:06:10 +00:00
|
|
|
|
:version "23.1")
|
2008-11-26 02:55:28 +00:00
|
|
|
|
|
2015-02-26 14:46:12 +00:00
|
|
|
|
(defcustom vc-git-annotate-switches nil
|
|
|
|
|
"String or list of strings specifying switches for Git blame under VC.
|
|
|
|
|
If nil, use the value of `vc-annotate-switches'. If t, use no switches."
|
|
|
|
|
:type '(choice (const :tag "Unspecified" nil)
|
|
|
|
|
(const :tag "None" t)
|
|
|
|
|
(string :tag "Argument String")
|
|
|
|
|
(repeat :tag "Argument List" :value ("") string))
|
2015-05-16 14:06:10 +00:00
|
|
|
|
:version "25.1")
|
2015-02-26 14:46:12 +00:00
|
|
|
|
|
2015-05-16 13:14:01 +00:00
|
|
|
|
(defcustom vc-git-resolve-conflicts t
|
|
|
|
|
"When non-nil, mark conflicted file as resolved upon saving.
|
|
|
|
|
That is performed after all conflict markers in it have been
|
|
|
|
|
removed. If the value is `unstage-maybe', and no merge is in
|
|
|
|
|
progress, then after the last conflict is resolved, also clear
|
|
|
|
|
the staging area."
|
|
|
|
|
:type '(choice (const :tag "Don't resolve" nil)
|
|
|
|
|
(const :tag "Resolve" t)
|
|
|
|
|
(const :tag "Resolve and maybe unstage all files"
|
|
|
|
|
unstage-maybe))
|
2015-05-16 14:06:10 +00:00
|
|
|
|
:version "25.1")
|
2015-05-16 13:14:01 +00:00
|
|
|
|
|
2011-03-10 08:26:41 +00:00
|
|
|
|
(defcustom vc-git-program "git"
|
|
|
|
|
"Name of the Git executable (excluding any arguments)."
|
|
|
|
|
:version "24.1"
|
2015-05-16 14:06:10 +00:00
|
|
|
|
:type 'string)
|
2011-03-10 08:26:41 +00:00
|
|
|
|
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(defcustom vc-git-root-log-format
|
|
|
|
|
'("%d%h..: %an %ad %s"
|
|
|
|
|
;; The first shy group matches the characters drawn by --graph.
|
|
|
|
|
;; We use numbered groups because `log-view-message-re' wants the
|
|
|
|
|
;; revision number to be group 1.
|
|
|
|
|
"^\\(?:[*/\\| ]+ \\)?\\(?2: ([^)]+)\\)?\\(?1:[0-9a-z]+\\)..: \
|
|
|
|
|
\\(?3:.*?\\)[ \t]+\\(?4:[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\)"
|
2017-01-14 03:56:37 +00:00
|
|
|
|
((1 'log-view-message)
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(2 'change-log-list nil lax)
|
|
|
|
|
(3 'change-log-name)
|
|
|
|
|
(4 'change-log-date)))
|
|
|
|
|
"Git log format for `vc-print-root-log'.
|
|
|
|
|
This should be a list (FORMAT REGEXP KEYWORDS), where FORMAT is a
|
|
|
|
|
format string (which is passed to \"git log\" via the argument
|
|
|
|
|
\"--pretty=tformat:FORMAT\"), REGEXP is a regular expression
|
|
|
|
|
matching the resulting Git log output, and KEYWORDS is a list of
|
|
|
|
|
`font-lock-keywords' for highlighting the Log View buffer."
|
|
|
|
|
:type '(list string string (repeat sexp))
|
|
|
|
|
:version "24.1")
|
|
|
|
|
|
2016-04-10 16:04:33 +00:00
|
|
|
|
(defcustom vc-git-commits-coding-system 'utf-8
|
|
|
|
|
"Default coding system for sending commit log messages to Git.
|
|
|
|
|
|
|
|
|
|
Should be consistent with the Git config value i18n.commitEncoding,
|
|
|
|
|
and should also be consistent with `locale-coding-system'."
|
|
|
|
|
:type '(coding-system :tag "Coding system to encode Git commit logs")
|
|
|
|
|
:version "25.1")
|
|
|
|
|
|
|
|
|
|
(defcustom vc-git-log-output-coding-system 'utf-8
|
|
|
|
|
"Default coding system for receiving log output from Git.
|
|
|
|
|
|
|
|
|
|
Should be consistent with the Git config value i18n.logOutputEncoding."
|
|
|
|
|
:type '(coding-system :tag "Coding system to decode Git log output")
|
|
|
|
|
:version "25.1")
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2019-06-25 10:58:36 +00:00
|
|
|
|
(defcustom vc-git-grep-template "git --no-pager grep -n <C> -e <R> -- <F>"
|
2018-09-01 21:46:16 +00:00
|
|
|
|
"The default command to run for \\[vc-git-grep].
|
|
|
|
|
The following place holders should be present in the string:
|
2019-06-25 10:58:36 +00:00
|
|
|
|
<C> - place to put the options like -i.
|
2018-09-01 21:46:16 +00:00
|
|
|
|
<F> - file names and wildcards to search.
|
|
|
|
|
<R> - the regular expression searched for."
|
|
|
|
|
:type 'string
|
|
|
|
|
:version "27.1")
|
|
|
|
|
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(defcustom vc-git-show-stash t
|
|
|
|
|
"How much of the git stash list to show by default.
|
|
|
|
|
Default t means all, otherwise an integer specifying the maximum
|
|
|
|
|
number to show. A text button is always shown allowing you to
|
|
|
|
|
toggle display of the entire list."
|
|
|
|
|
:type '(choice (const :tag "All" t)
|
|
|
|
|
(integer :tag "Limit"
|
|
|
|
|
:validate
|
|
|
|
|
(lambda (widget)
|
|
|
|
|
(unless (>= (widget-value widget) 0)
|
|
|
|
|
(widget-put widget :error
|
|
|
|
|
"Invalid value: must be a non-negative integer")
|
|
|
|
|
widget))))
|
|
|
|
|
:version "27.1")
|
|
|
|
|
|
2011-01-29 03:12:32 +00:00
|
|
|
|
;; History of Git commands.
|
|
|
|
|
(defvar vc-git-history nil)
|
|
|
|
|
|
2018-01-19 01:11:34 +00:00
|
|
|
|
;; Clear up the cache to force vc-call to check again and discover
|
|
|
|
|
;; new functions when we reload this file.
|
|
|
|
|
(put 'Git 'vc-functions nil)
|
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;; BACKEND PROPERTIES
|
|
|
|
|
|
2008-05-02 17:47:25 +00:00
|
|
|
|
(defun vc-git-revision-granularity () 'repository)
|
2012-04-26 03:18:47 +00:00
|
|
|
|
(defun vc-git-checkout-model (_files) 'implicit)
|
2007-07-22 21:16:34 +00:00
|
|
|
|
|
|
|
|
|
;;; STATE-QUERYING FUNCTIONS
|
|
|
|
|
|
|
|
|
|
;;;###autoload (defun vc-git-registered (file)
|
|
|
|
|
;;;###autoload "Return non-nil if FILE is registered with git."
|
2010-03-06 04:05:47 +00:00
|
|
|
|
;;;###autoload (if (vc-find-root file ".git") ; Short cut.
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;;###autoload (progn
|
2013-02-01 17:19:24 +00:00
|
|
|
|
;;;###autoload (load "vc-git" nil t)
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;;###autoload (vc-git-registered file))))
|
|
|
|
|
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(defun vc-git-registered (file)
|
|
|
|
|
"Check whether FILE is registered with git."
|
2012-07-18 15:04:36 +00:00
|
|
|
|
(let ((dir (vc-git-root file)))
|
|
|
|
|
(when dir
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(let* (process-file-side-effects
|
|
|
|
|
;; Do not use the `file-name-directory' here: git-ls-files
|
|
|
|
|
;; sometimes fails to return the correct status for relative
|
|
|
|
|
;; path specs.
|
|
|
|
|
;; See also: http://marc.info/?l=git&m=125787684318129&w=2
|
|
|
|
|
(name (file-relative-name file dir))
|
|
|
|
|
(str (ignore-errors
|
|
|
|
|
(cd dir)
|
|
|
|
|
(vc-git--out-ok "ls-files" "-c" "-z" "--" name)
|
|
|
|
|
;; If result is empty, use ls-tree to check for deleted
|
|
|
|
|
;; file.
|
|
|
|
|
(when (eq (point-min) (point-max))
|
|
|
|
|
(vc-git--out-ok "ls-tree" "--name-only" "-z" "HEAD"
|
|
|
|
|
"--" name))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(and str
|
|
|
|
|
(> (length str) (length name))
|
|
|
|
|
(string= (substring str 0 (1+ (length name)))
|
|
|
|
|
(concat name "\0"))))))))
|
2007-07-26 17:26:08 +00:00
|
|
|
|
|
2008-03-24 08:21:43 +00:00
|
|
|
|
(defun vc-git--state-code (code)
|
2018-02-16 20:16:15 +00:00
|
|
|
|
"Convert from a string to an added/deleted/modified state."
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(pcase (string-to-char code)
|
2008-03-24 08:21:43 +00:00
|
|
|
|
(?M 'edited)
|
|
|
|
|
(?A 'added)
|
|
|
|
|
(?D 'removed)
|
|
|
|
|
(?U 'edited) ;; FIXME
|
|
|
|
|
(?T 'edited))) ;; FIXME
|
|
|
|
|
|
2017-05-01 16:46:24 +00:00
|
|
|
|
(defvar vc-git--program-version nil)
|
|
|
|
|
|
|
|
|
|
(defun vc-git--program-version ()
|
|
|
|
|
(or vc-git--program-version
|
|
|
|
|
(let ((version-string
|
|
|
|
|
(vc-git--run-command-string nil "version")))
|
|
|
|
|
(setq vc-git--program-version
|
|
|
|
|
(if (and version-string
|
2018-02-16 09:30:29 +00:00
|
|
|
|
;; Git for Windows appends ".windows.N" to the
|
|
|
|
|
;; numerical version reported by Git.
|
|
|
|
|
(string-match
|
2019-03-16 18:38:36 +00:00
|
|
|
|
"git version \\([0-9.]+\\)\\(\\.windows\\.[0-9]+\\)?$"
|
2018-02-16 09:30:29 +00:00
|
|
|
|
version-string))
|
2017-05-01 16:46:24 +00:00
|
|
|
|
(match-string 1 version-string)
|
|
|
|
|
"0")))))
|
|
|
|
|
|
2017-05-01 01:23:59 +00:00
|
|
|
|
(defun vc-git--git-status-to-vc-state (code-list)
|
|
|
|
|
"Convert CODE-LIST to a VC status.
|
|
|
|
|
|
|
|
|
|
Each element of CODE-LIST comes from the first two characters of
|
|
|
|
|
a line returned by 'git status --porcelain' and should be passed
|
|
|
|
|
in the order given by 'git status'."
|
|
|
|
|
;; It is necessary to allow CODE-LIST to be a list because sometimes git
|
|
|
|
|
;; status returns multiple lines, e.g. for a file that is removed from
|
|
|
|
|
;; the index but is present in the HEAD and working tree.
|
|
|
|
|
(pcase code-list
|
|
|
|
|
('nil 'up-to-date)
|
|
|
|
|
(`(,code)
|
|
|
|
|
(pcase code
|
|
|
|
|
("!!" 'ignored)
|
|
|
|
|
("??" 'unregistered)
|
|
|
|
|
;; I have only seen this with a file that is only present in the
|
|
|
|
|
;; index. Let us call this `removed'.
|
|
|
|
|
("AD" 'removed)
|
|
|
|
|
(_ (cond
|
|
|
|
|
((string-match-p "^[ RD]+$" code) 'removed)
|
|
|
|
|
((string-match-p "^[ M]+$" code) 'edited)
|
|
|
|
|
((string-match-p "^[ A]+$" code) 'added)
|
|
|
|
|
((string-match-p "^[ U]+$" code) 'conflict)
|
|
|
|
|
(t 'edited)))))
|
|
|
|
|
;; I know of two cases when git state returns more than one element,
|
|
|
|
|
;; in both cases returning '("D " "??")':
|
|
|
|
|
;; 1. When a file is removed from the index but present in the
|
|
|
|
|
;; HEAD and working tree.
|
|
|
|
|
;; 2. When a file A is renamed to B in the index and then back to A
|
|
|
|
|
;; in the working tree.
|
|
|
|
|
;; In both of these instances, `unregistered' is a reasonable response.
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('("D " "??") 'unregistered)
|
2017-05-01 01:23:59 +00:00
|
|
|
|
;; In other cases, let us return `edited'.
|
|
|
|
|
(_ 'edited)))
|
|
|
|
|
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(defun vc-git-state (file)
|
2007-07-22 21:16:34 +00:00
|
|
|
|
"Git-specific version of `vc-state'."
|
2017-05-01 16:46:24 +00:00
|
|
|
|
;; It can't set `needs-update' or `needs-merge'. The rough
|
2017-05-01 14:58:57 +00:00
|
|
|
|
;; equivalent would be that upstream branch for current branch is in
|
|
|
|
|
;; fast-forward state i.e. current branch is direct ancestor of
|
|
|
|
|
;; corresponding upstream branch, and the file was modified
|
|
|
|
|
;; upstream. We'd need to check against the upstream tracking
|
|
|
|
|
;; branch for that (an extra process call or two).
|
2017-05-01 16:46:24 +00:00
|
|
|
|
(let* ((args
|
|
|
|
|
`("status" "--porcelain" "-z"
|
|
|
|
|
;; Just to be explicit, it's the default anyway.
|
|
|
|
|
"--untracked-files"
|
|
|
|
|
,@(when (version<= "1.7.6.3" (vc-git--program-version))
|
|
|
|
|
'("--ignored"))
|
|
|
|
|
"--"))
|
|
|
|
|
(status (apply #'vc-git--run-command-string file args)))
|
2017-05-01 01:23:59 +00:00
|
|
|
|
(if (null status)
|
|
|
|
|
;; If status is nil, there was an error calling git, likely because
|
|
|
|
|
;; the file is not in a git repo.
|
|
|
|
|
'unregistered
|
|
|
|
|
;; If this code is adapted to parse 'git status' for a directory,
|
|
|
|
|
;; note that a renamed file takes up two null values and needs to be
|
|
|
|
|
;; treated slightly more carefully.
|
|
|
|
|
(vc-git--git-status-to-vc-state
|
|
|
|
|
(mapcar (lambda (s)
|
|
|
|
|
(substring s 0 2))
|
|
|
|
|
(split-string status "\0" t))))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2015-09-01 12:02:52 +00:00
|
|
|
|
(defun vc-git-working-revision (_file)
|
2007-10-10 18:52:45 +00:00
|
|
|
|
"Git-specific version of `vc-working-revision'."
|
2015-09-01 12:02:52 +00:00
|
|
|
|
(let (process-file-side-effects)
|
|
|
|
|
(vc-git--rev-parse "HEAD")))
|
|
|
|
|
|
|
|
|
|
(defun vc-git--symbolic-ref (file)
|
|
|
|
|
(or
|
|
|
|
|
(vc-file-getprop file 'vc-git-symbolic-ref)
|
|
|
|
|
(let* (process-file-side-effects
|
|
|
|
|
(str (vc-git--run-command-string nil "symbolic-ref" "HEAD")))
|
|
|
|
|
(vc-file-setprop file 'vc-git-symbolic-ref
|
|
|
|
|
(if str
|
|
|
|
|
(if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str)
|
|
|
|
|
(match-string 2 str)
|
|
|
|
|
str))))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-08-25 20:04:26 +00:00
|
|
|
|
(defun vc-git-mode-line-string (file)
|
2012-06-02 10:56:09 +00:00
|
|
|
|
"Return a string for `vc-mode-line' to put in the mode line for FILE."
|
2016-04-27 14:12:12 +00:00
|
|
|
|
(let* ((rev (vc-working-revision file 'Git))
|
2015-09-01 12:02:52 +00:00
|
|
|
|
(disp-rev (or (vc-git--symbolic-ref file)
|
|
|
|
|
(substring rev 0 7)))
|
2007-08-25 20:04:26 +00:00
|
|
|
|
(def-ml (vc-default-mode-line-string 'Git file))
|
2015-09-03 12:36:39 +00:00
|
|
|
|
(help-echo (get-text-property 0 'help-echo def-ml))
|
|
|
|
|
(face (get-text-property 0 'face def-ml)))
|
2016-04-23 19:16:27 +00:00
|
|
|
|
(propertize (concat (substring def-ml 0 4) disp-rev)
|
2015-09-03 12:36:39 +00:00
|
|
|
|
'face face
|
2013-05-27 23:11:21 +00:00
|
|
|
|
'help-echo (concat help-echo "\nCurrent revision: " rev))))
|
2007-08-25 20:04:26 +00:00
|
|
|
|
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-defstruct (vc-git-extra-fileinfo
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(:copier nil)
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(:constructor vc-git-create-extra-fileinfo
|
|
|
|
|
(old-perm new-perm &optional rename-state orig-name))
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(:conc-name vc-git-extra-fileinfo->))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
old-perm new-perm ;; Permission flags.
|
|
|
|
|
rename-state ;; Rename or copy state.
|
|
|
|
|
orig-name) ;; Original name for renames or copies.
|
2008-03-30 15:44:34 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-escape-file-name (name)
|
|
|
|
|
"Escape a file name if necessary."
|
|
|
|
|
(if (string-match "[\n\t\"\\]" name)
|
|
|
|
|
(concat "\""
|
|
|
|
|
(mapconcat (lambda (c)
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(pcase c
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(?\n "\\n")
|
|
|
|
|
(?\t "\\t")
|
|
|
|
|
(?\\ "\\\\")
|
|
|
|
|
(?\" "\\\"")
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(_ (char-to-string c))))
|
2008-03-30 15:44:34 +00:00
|
|
|
|
name "")
|
|
|
|
|
"\"")
|
|
|
|
|
name))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-file-type-as-string (old-perm new-perm)
|
|
|
|
|
"Return a string describing the file type based on its permissions."
|
Audit use of lsh and fix glitches
I audited use of lsh in the Lisp source code, and fixed the
glitches that I found. While I was at it, I replaced uses of lsh
with ash when either will do. Replacement is OK when either
argument is known to be nonnegative, or when only the low-order
bits of the result matter, and is a (minor) win since ash is a bit
more solid than lsh nowadays, and is a bit faster.
* lisp/calc/calc-ext.el (math-check-fixnum):
Prefer most-positive-fixnum to (lsh -1 -1).
* lisp/vc/vc-hg.el (vc-hg-state-fast): When testing fixnum width,
prefer (zerop (ash most-positive-fixnum -32)) to (zerop (lsh -1
32)) (Bug#32485#11).
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode):
Tighten sanity-check for bytecode overflow, by checking that the
result of (ash pc -8) is nonnegative. Formerly this check was not
needed since lsh was used and the number overflowed differently.
* lisp/net/dns.el (dns-write): Fix some obvious sign typos in
shift counts. Evidently this part of the code has never been
exercised.
* lisp/progmodes/hideif.el (hif-shiftleft, hif-shiftright):
* lisp/term/common-win.el (x-setup-function-keys):
Simplify.
* admin/unidata/unidata-gen.el, admin/unidata/uvs.el:
* doc/lispref/keymaps.texi, doc/lispref/syntax.texi:
* doc/misc/calc.texi, doc/misc/cl.texi, etc/NEWS.19:
* lisp/arc-mode.el, lisp/calc/calc-bin.el, lisp/calc/calc-comb.el:
* lisp/calc/calc-ext.el, lisp/calc/calc-math.el:
* lisp/cedet/semantic/wisent/comp.el, lisp/composite.el:
* lisp/disp-table.el, lisp/dos-fns.el, lisp/edmacro.el:
* lisp/emacs-lisp/bindat.el, lisp/emacs-lisp/byte-opt.el:
* lisp/emacs-lisp/bytecomp.el, lisp/emacs-lisp/cl-extra.el:
* lisp/erc/erc-dcc.el, lisp/facemenu.el, lisp/gnus/message.el:
* lisp/gnus/nndoc.el, lisp/gnus/nnmaildir.el, lisp/image.el:
* lisp/international/ccl.el, lisp/international/fontset.el:
* lisp/international/mule-cmds.el, lisp/international/mule.el:
* lisp/json.el, lisp/mail/binhex.el, lisp/mail/rmail.el:
* lisp/mail/uudecode.el, lisp/md4.el, lisp/net/dns.el:
* lisp/net/ntlm.el, lisp/net/sasl.el, lisp/net/socks.el:
* lisp/net/tramp.el, lisp/obsolete/levents.el:
* lisp/obsolete/pgg-parse.el, lisp/org/org.el:
* lisp/org/ox-publish.el, lisp/progmodes/cc-defs.el:
* lisp/progmodes/ebnf2ps.el, lisp/progmodes/hideif.el:
* lisp/ps-bdf.el, lisp/ps-print.el, lisp/simple.el:
* lisp/tar-mode.el, lisp/term/common-win.el:
* lisp/term/tty-colors.el, lisp/term/xterm.el, lisp/vc/vc-git.el:
* lisp/vc/vc-hg.el, lisp/x-dnd.el, test/src/data-tests.el:
Prefer ash to lsh when either will do.
2018-08-21 20:44:03 +00:00
|
|
|
|
(let* ((old-type (ash (or old-perm 0) -9))
|
|
|
|
|
(new-type (ash (or new-perm 0) -9))
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(str (pcase new-type
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(?\100 ;; File.
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(pcase old-type
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(?\100 nil)
|
|
|
|
|
(?\120 " (type change symlink -> file)")
|
|
|
|
|
(?\160 " (type change subproject -> file)")))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(?\120 ;; Symlink.
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(pcase old-type
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(?\100 " (type change file -> symlink)")
|
|
|
|
|
(?\160 " (type change subproject -> symlink)")
|
2015-06-17 00:28:48 +00:00
|
|
|
|
(_ " (symlink)")))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(?\160 ;; Subproject.
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(pcase old-type
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(?\100 " (type change file -> subproject)")
|
|
|
|
|
(?\120 " (type change symlink -> subproject)")
|
2015-06-17 00:28:48 +00:00
|
|
|
|
(_ " (subproject)")))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(?\110 nil) ;; Directory (internal, not a real git state).
|
|
|
|
|
(?\000 ;; Deleted or unknown.
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(pcase old-type
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(?\120 " (symlink)")
|
|
|
|
|
(?\160 " (subproject)")))
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(_ (format " (unknown type %o)" new-type)))))
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(cond (str (propertize str 'face 'font-lock-comment-face))
|
|
|
|
|
((eq new-type ?\110) "/")
|
|
|
|
|
(t ""))))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-rename-as-string (state extra)
|
2010-03-06 04:05:47 +00:00
|
|
|
|
"Return a string describing the copy or rename associated with INFO,
|
|
|
|
|
or an empty string if none."
|
2009-08-25 09:01:38 +00:00
|
|
|
|
(let ((rename-state (when extra
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(vc-git-extra-fileinfo->rename-state extra))))
|
|
|
|
|
(if rename-state
|
|
|
|
|
(propertize
|
|
|
|
|
(concat " ("
|
|
|
|
|
(if (eq rename-state 'copy) "copied from "
|
|
|
|
|
(if (eq state 'added) "renamed from "
|
|
|
|
|
"renamed to "))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(vc-git-escape-file-name
|
|
|
|
|
(vc-git-extra-fileinfo->orig-name extra))
|
|
|
|
|
")")
|
|
|
|
|
'face 'font-lock-comment-face)
|
2008-03-30 15:44:34 +00:00
|
|
|
|
"")))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-permissions-as-string (old-perm new-perm)
|
|
|
|
|
"Format a permission change as string."
|
|
|
|
|
(propertize
|
|
|
|
|
(if (or (not old-perm)
|
|
|
|
|
(not new-perm)
|
|
|
|
|
(eq 0 (logand ?\111 (logxor old-perm new-perm))))
|
|
|
|
|
" "
|
|
|
|
|
(if (eq 0 (logand ?\111 old-perm)) "+x" "-x"))
|
|
|
|
|
'face 'font-lock-type-face))
|
|
|
|
|
|
2008-10-27 07:21:43 +00:00
|
|
|
|
(defun vc-git-dir-printer (info)
|
2008-04-16 03:00:53 +00:00
|
|
|
|
"Pretty-printer for the vc-dir-fileinfo structure."
|
2008-07-22 02:20:10 +00:00
|
|
|
|
(let* ((isdir (vc-dir-fileinfo->directory info))
|
|
|
|
|
(state (if isdir "" (vc-dir-fileinfo->state info)))
|
2008-04-16 03:00:53 +00:00
|
|
|
|
(extra (vc-dir-fileinfo->extra info))
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(old-perm (when extra (vc-git-extra-fileinfo->old-perm extra)))
|
|
|
|
|
(new-perm (when extra (vc-git-extra-fileinfo->new-perm extra))))
|
|
|
|
|
(insert
|
|
|
|
|
" "
|
2008-04-16 03:00:53 +00:00
|
|
|
|
(propertize (format "%c" (if (vc-dir-fileinfo->marked info) ?* ? ))
|
2008-03-30 15:44:34 +00:00
|
|
|
|
'face 'font-lock-type-face)
|
|
|
|
|
" "
|
|
|
|
|
(propertize
|
|
|
|
|
(format "%-12s" state)
|
|
|
|
|
'face (cond ((eq state 'up-to-date) 'font-lock-builtin-face)
|
|
|
|
|
((eq state 'missing) 'font-lock-warning-face)
|
|
|
|
|
(t 'font-lock-variable-name-face))
|
|
|
|
|
'mouse-face 'highlight)
|
|
|
|
|
" " (vc-git-permissions-as-string old-perm new-perm)
|
2008-12-27 22:24:31 +00:00
|
|
|
|
" "
|
2008-04-16 03:00:53 +00:00
|
|
|
|
(propertize (vc-git-escape-file-name (vc-dir-fileinfo->name info))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
'face (if isdir 'font-lock-comment-delimiter-face
|
|
|
|
|
'font-lock-function-name-face)
|
2008-07-30 07:50:26 +00:00
|
|
|
|
'help-echo
|
|
|
|
|
(if isdir
|
|
|
|
|
"Directory\nVC operations can be applied to it\nmouse-3: Pop-up menu"
|
|
|
|
|
"File\nmouse-3: Pop-up menu")
|
2009-02-11 06:36:32 +00:00
|
|
|
|
'keymap vc-dir-filename-mouse-map
|
2008-07-30 07:50:26 +00:00
|
|
|
|
'mouse-face 'highlight)
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(vc-git-file-type-as-string old-perm new-perm)
|
|
|
|
|
(vc-git-rename-as-string state extra))))
|
|
|
|
|
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(cl-defstruct (vc-git-dir-status-state
|
|
|
|
|
(:copier nil)
|
|
|
|
|
(:conc-name vc-git-dir-status-state->))
|
|
|
|
|
;; Current stage.
|
|
|
|
|
stage
|
|
|
|
|
;; List of files still to be processed.
|
|
|
|
|
files
|
|
|
|
|
;; Update function to be called at the end.
|
|
|
|
|
update-function
|
|
|
|
|
;; Hash table of entries for files we've computed so far.
|
|
|
|
|
(hash (make-hash-table :test 'equal)))
|
|
|
|
|
|
|
|
|
|
(defsubst vc-git-dir-status-update-file (state filename file-state file-info)
|
|
|
|
|
(puthash filename (list file-state file-info)
|
|
|
|
|
(vc-git-dir-status-state->hash state))
|
|
|
|
|
(setf (vc-git-dir-status-state->files state)
|
|
|
|
|
(delete filename (vc-git-dir-status-state->files state))))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-after-dir-status-stage (git-state)
|
2008-04-13 18:07:54 +00:00
|
|
|
|
"Process sentinel for the various dir-status stages."
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(let (next-stage
|
|
|
|
|
(files (vc-git-dir-status-state->files git-state)))
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(goto-char (point-min))
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(pcase (vc-git-dir-status-state->stage git-state)
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('update-index
|
2014-12-15 14:18:34 +00:00
|
|
|
|
(setq next-stage (if (vc-git--empty-db-p) 'ls-files-added 'diff-index)))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-added
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(setq next-stage 'ls-files-unknown)
|
|
|
|
|
(while (re-search-forward "\\([0-7]\\{6\\}\\) [0-9a-f]\\{40\\} 0\t\\([^\0]+\\)\0" nil t)
|
|
|
|
|
(let ((new-perm (string-to-number (match-string 1) 8))
|
|
|
|
|
(name (match-string 2)))
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-dir-status-update-file
|
|
|
|
|
git-state name 'added
|
|
|
|
|
(vc-git-create-extra-fileinfo 0 new-perm)))))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-up-to-date
|
2014-12-15 14:18:34 +00:00
|
|
|
|
(setq next-stage 'ls-files-unknown)
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(while (re-search-forward "\\([0-7]\\{6\\}\\) [0-9a-f]\\{40\\} \\([0-3]\\)\t\\([^\0]+\\)\0" nil t)
|
|
|
|
|
(let ((perm (string-to-number (match-string 1) 8))
|
|
|
|
|
(state (match-string 2))
|
|
|
|
|
(name (match-string 3)))
|
|
|
|
|
(vc-git-dir-status-update-file
|
|
|
|
|
git-state name (if (equal state "0")
|
|
|
|
|
'up-to-date
|
|
|
|
|
'conflict)
|
|
|
|
|
(vc-git-create-extra-fileinfo perm perm)))))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-conflict
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(setq next-stage 'ls-files-unknown)
|
|
|
|
|
;; It's enough to look for "3" to notice a conflict.
|
|
|
|
|
(while (re-search-forward "\\([0-7]\\{6\\}\\) [0-9a-f]\\{40\\} 3\t\\([^\0]+\\)\0" nil t)
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(let ((perm (string-to-number (match-string 1) 8))
|
|
|
|
|
(name (match-string 2)))
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-dir-status-update-file
|
|
|
|
|
git-state name 'conflict
|
|
|
|
|
(vc-git-create-extra-fileinfo perm perm)))))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-unknown
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(when files (setq next-stage 'ls-files-ignored))
|
|
|
|
|
(while (re-search-forward "\\([^\0]*?\\)\0" nil t 1)
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-dir-status-update-file git-state (match-string 1) 'unregistered
|
|
|
|
|
(vc-git-create-extra-fileinfo 0 0))))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-ignored
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(while (re-search-forward "\\([^\0]*?\\)\0" nil t 1)
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-dir-status-update-file git-state (match-string 1) 'ignored
|
|
|
|
|
(vc-git-create-extra-fileinfo 0 0))))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('diff-index
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(setq next-stage (if files 'ls-files-up-to-date 'ls-files-conflict))
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(while (re-search-forward
|
|
|
|
|
":\\([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"
|
|
|
|
|
nil t 1)
|
|
|
|
|
(let ((old-perm (string-to-number (match-string 1) 8))
|
|
|
|
|
(new-perm (string-to-number (match-string 2) 8))
|
|
|
|
|
(state (or (match-string 4) (match-string 6)))
|
|
|
|
|
(name (or (match-string 5) (match-string 7)))
|
|
|
|
|
(new-name (match-string 8)))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(if new-name ; Copy or rename.
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(if (eq ?C (string-to-char state))
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-dir-status-update-file
|
|
|
|
|
git-state new-name 'added
|
|
|
|
|
(vc-git-create-extra-fileinfo old-perm new-perm
|
|
|
|
|
'copy name))
|
|
|
|
|
(vc-git-dir-status-update-file
|
|
|
|
|
git-state name 'removed
|
|
|
|
|
(vc-git-create-extra-fileinfo 0 0 'rename new-name))
|
|
|
|
|
(vc-git-dir-status-update-file
|
|
|
|
|
git-state new-name 'added
|
|
|
|
|
(vc-git-create-extra-fileinfo old-perm new-perm
|
|
|
|
|
'rename name)))
|
|
|
|
|
(vc-git-dir-status-update-file
|
|
|
|
|
git-state name (vc-git--state-code state)
|
|
|
|
|
(vc-git-create-extra-fileinfo old-perm new-perm)))))))
|
|
|
|
|
;; If we had files but now we don't, it's time to stop.
|
|
|
|
|
(when (and files (not (vc-git-dir-status-state->files git-state)))
|
|
|
|
|
(setq next-stage nil))
|
|
|
|
|
(setf (vc-git-dir-status-state->stage git-state) next-stage)
|
|
|
|
|
(setf (vc-git-dir-status-state->files git-state) files)
|
|
|
|
|
(if next-stage
|
|
|
|
|
(vc-git-dir-status-goto-stage git-state)
|
|
|
|
|
(funcall (vc-git-dir-status-state->update-function git-state)
|
|
|
|
|
(let ((result nil))
|
|
|
|
|
(maphash (lambda (key value)
|
|
|
|
|
(push (cons key value) result))
|
|
|
|
|
(vc-git-dir-status-state->hash git-state))
|
|
|
|
|
result)
|
|
|
|
|
nil))))
|
2008-04-13 18:07:54 +00:00
|
|
|
|
|
Silence the rest of vc compilation
* vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff, vc-resynch-buffer):
Declare.
(vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
* vc/vc-git.el (vc-exec-after, vc-set-async-update, grep-read-regexp)
(grep-read-files, grep-expand-template, vc-dir-refresh): Declare.
(vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
* vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
(vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
* vc/vc-sccs.el (vc-file-tree-walk): Declare.
(vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
(vc-tag-precondition, vc-rename-master): Autoload.
2013-05-28 07:47:11 +00:00
|
|
|
|
;; Follows vc-git-command (or vc-do-async-command), which uses vc-do-command
|
|
|
|
|
;; from vc-dispatcher.
|
2015-10-28 00:43:14 +00:00
|
|
|
|
(declare-function vc-exec-after "vc-dispatcher" (code))
|
|
|
|
|
;; Follows vc-exec-after.
|
Silence the rest of vc compilation
* vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff, vc-resynch-buffer):
Declare.
(vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
* vc/vc-git.el (vc-exec-after, vc-set-async-update, grep-read-regexp)
(grep-read-files, grep-expand-template, vc-dir-refresh): Declare.
(vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
* vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
(vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
* vc/vc-sccs.el (vc-file-tree-walk): Declare.
(vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
(vc-tag-precondition, vc-rename-master): Autoload.
2013-05-28 07:47:11 +00:00
|
|
|
|
(declare-function vc-set-async-update "vc-dispatcher" (process-buffer))
|
|
|
|
|
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(defun vc-git-dir-status-goto-stage (git-state)
|
2018-06-28 00:05:19 +00:00
|
|
|
|
;; TODO: Look into reimplementing this using `git status --porcelain=v2'.
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(let ((files (vc-git-dir-status-state->files git-state)))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(pcase (vc-git-dir-status-state->stage git-state)
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('update-index
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(if files
|
|
|
|
|
(vc-git-command (current-buffer) 'async files "add" "--refresh" "--")
|
|
|
|
|
(vc-git-command (current-buffer) 'async nil
|
|
|
|
|
"update-index" "--refresh")))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-added
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"ls-files" "-z" "-c" "-s" "--"))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-up-to-date
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"ls-files" "-z" "-c" "-s" "--"))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-conflict
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
2018-06-28 00:03:36 +00:00
|
|
|
|
"ls-files" "-z" "-u" "--"))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-unknown
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"ls-files" "-z" "-o" "--directory"
|
|
|
|
|
"--no-empty-directory" "--exclude-standard" "--"))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('ls-files-ignored
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"ls-files" "-z" "-o" "-i" "--directory"
|
|
|
|
|
"--no-empty-directory" "--exclude-standard" "--"))
|
|
|
|
|
;; --relative added in Git 1.5.5.
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('diff-index
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"diff-index" "--relative" "-z" "-M" "HEAD" "--")))
|
|
|
|
|
(vc-run-delayed
|
|
|
|
|
(vc-git-after-dir-status-stage git-state))))
|
2008-03-22 17:33:52 +00:00
|
|
|
|
|
2014-12-02 15:10:55 +00:00
|
|
|
|
(defun vc-git-dir-status-files (_dir files update-function)
|
2008-04-13 18:07:54 +00:00
|
|
|
|
"Return a list of (FILE STATE EXTRA) entries for DIR."
|
2008-03-21 06:24:15 +00:00
|
|
|
|
;; Further things that would have to be fixed later:
|
|
|
|
|
;; - how to handle unregistered directories
|
2008-04-16 03:00:53 +00:00
|
|
|
|
;; - how to support vc-dir on a subdir of the project tree
|
2017-02-14 01:09:36 +00:00
|
|
|
|
(vc-git-dir-status-goto-stage
|
|
|
|
|
(make-vc-git-dir-status-state :stage 'update-index
|
|
|
|
|
:files files
|
|
|
|
|
:update-function update-function)))
|
2008-02-18 07:46:44 +00:00
|
|
|
|
|
2009-11-05 03:24:08 +00:00
|
|
|
|
(defvar vc-git-stash-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
2009-12-03 04:08:08 +00:00
|
|
|
|
;; Turn off vc-dir marking
|
|
|
|
|
(define-key map [mouse-2] 'ignore)
|
|
|
|
|
|
|
|
|
|
(define-key map [down-mouse-3] 'vc-git-stash-menu)
|
2009-11-05 03:24:08 +00:00
|
|
|
|
(define-key map "\C-k" 'vc-git-stash-delete-at-point)
|
|
|
|
|
(define-key map "=" 'vc-git-stash-show-at-point)
|
|
|
|
|
(define-key map "\C-m" 'vc-git-stash-show-at-point)
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(define-key map "A" 'vc-git-stash-apply-at-point)
|
|
|
|
|
(define-key map "P" 'vc-git-stash-pop-at-point)
|
2009-12-08 15:56:57 +00:00
|
|
|
|
(define-key map "S" 'vc-git-stash-snapshot)
|
2009-12-03 04:08:08 +00:00
|
|
|
|
map))
|
|
|
|
|
|
2019-10-22 07:31:15 +00:00
|
|
|
|
(defun vc-git--make-button-text (show count1 count2)
|
|
|
|
|
(if show
|
|
|
|
|
(format "Show all stashes (%s)" count2)
|
|
|
|
|
(if (= count1 count2)
|
|
|
|
|
(format "Hide all stashes (%s)" count2)
|
|
|
|
|
(format "Show %s stash%s (of %s)" count1 (if (= count1 1) "" "es") count2))))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-make-stash-button (show count1 count2)
|
|
|
|
|
(let ((orig-text (vc-git--make-button-text show count1 count2)))
|
|
|
|
|
(make-text-button
|
|
|
|
|
orig-text nil
|
|
|
|
|
'action
|
|
|
|
|
(lambda (counts)
|
|
|
|
|
(let* ((inhibit-read-only t)
|
|
|
|
|
(start (next-single-property-change
|
|
|
|
|
(point-min) 'vc-git-hideable))
|
|
|
|
|
(end (next-single-property-change
|
|
|
|
|
start 'vc-git-hideable))
|
|
|
|
|
(state (get-text-property start 'invisible)))
|
|
|
|
|
(add-text-properties
|
|
|
|
|
start end
|
|
|
|
|
`(invisible ,(not state)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(delete-region (button-start (point)) (button-end (point)))
|
|
|
|
|
(insert (vc-git-make-stash-button
|
|
|
|
|
(not state) (car counts) (cdr counts))))))
|
|
|
|
|
'button-data (cons count1 count2)
|
|
|
|
|
'help-echo "mouse-2, RET: Show/hide stashes")))
|
2019-10-17 13:55:06 +00:00
|
|
|
|
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(defvar vc-git-stash-menu-map
|
|
|
|
|
(let ((map (make-sparse-keymap "Git Stash")))
|
|
|
|
|
(define-key map [de]
|
2011-09-18 20:43:20 +00:00
|
|
|
|
'(menu-item "Delete Stash" vc-git-stash-delete-at-point
|
2009-12-03 04:08:08 +00:00
|
|
|
|
:help "Delete the current stash"))
|
|
|
|
|
(define-key map [ap]
|
2011-09-18 20:43:20 +00:00
|
|
|
|
'(menu-item "Apply Stash" vc-git-stash-apply-at-point
|
2009-12-03 04:08:08 +00:00
|
|
|
|
:help "Apply the current stash and keep it in the stash list"))
|
|
|
|
|
(define-key map [po]
|
2011-09-18 20:43:20 +00:00
|
|
|
|
'(menu-item "Apply and Remove Stash (Pop)" vc-git-stash-pop-at-point
|
2009-12-03 04:08:08 +00:00
|
|
|
|
:help "Apply the current stash and remove it"))
|
|
|
|
|
(define-key map [sh]
|
2011-09-18 20:43:20 +00:00
|
|
|
|
'(menu-item "Show Stash" vc-git-stash-show-at-point
|
2009-12-03 04:08:08 +00:00
|
|
|
|
:help "Show the contents of the current stash"))
|
2009-11-05 03:24:08 +00:00
|
|
|
|
map))
|
|
|
|
|
|
2013-12-11 17:10:22 +00:00
|
|
|
|
(defun vc-git-dir-extra-headers (dir)
|
2008-03-28 03:50:26 +00:00
|
|
|
|
(let ((str (with-output-to-string
|
|
|
|
|
(with-current-buffer standard-output
|
2009-07-23 06:42:50 +00:00
|
|
|
|
(vc-git--out-ok "symbolic-ref" "HEAD"))))
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(stash-list (vc-git-stash-list))
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(stash-help-echo "Use M-x vc-git-stash to create stashes.")
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(stash-list-help-echo "mouse-3: Show stash menu\nRET: Show stash\nA: Apply stash\nP: Apply and remove stash (pop)\nC-k: Delete stash")
|
|
|
|
|
|
|
|
|
|
branch remote remote-url stash-button stash-string)
|
2009-09-15 00:11:51 +00:00
|
|
|
|
(if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str)
|
|
|
|
|
(progn
|
|
|
|
|
(setq branch (match-string 2 str))
|
|
|
|
|
(setq remote
|
|
|
|
|
(with-output-to-string
|
|
|
|
|
(with-current-buffer standard-output
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(vc-git--out-ok "config"
|
|
|
|
|
(concat "branch." branch ".remote")))))
|
2009-09-15 00:11:51 +00:00
|
|
|
|
(when (string-match "\\([^\n]+\\)" remote)
|
|
|
|
|
(setq remote (match-string 1 remote)))
|
|
|
|
|
(when remote
|
|
|
|
|
(setq remote-url
|
|
|
|
|
(with-output-to-string
|
|
|
|
|
(with-current-buffer standard-output
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(vc-git--out-ok "config"
|
|
|
|
|
(concat "remote." remote ".url"))))))
|
2009-09-15 00:11:51 +00:00
|
|
|
|
(when (string-match "\\([^\n]+\\)" remote-url)
|
|
|
|
|
(setq remote-url (match-string 1 remote-url))))
|
2009-10-14 06:28:00 +00:00
|
|
|
|
(setq branch "not (detached HEAD)"))
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(when stash-list
|
2019-10-22 07:31:15 +00:00
|
|
|
|
(let* ((len (length stash-list))
|
|
|
|
|
(limit
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(if (integerp vc-git-show-stash)
|
2019-10-22 07:31:15 +00:00
|
|
|
|
(min vc-git-show-stash len)
|
|
|
|
|
len))
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(shown-stashes (cl-subseq stash-list 0 limit))
|
|
|
|
|
(hidden-stashes (cl-subseq stash-list limit))
|
2019-10-22 07:31:15 +00:00
|
|
|
|
(all-hideable (or (eq vc-git-show-stash t)
|
|
|
|
|
(<= len vc-git-show-stash))))
|
|
|
|
|
(setq stash-button (if all-hideable
|
|
|
|
|
(vc-git-make-stash-button nil limit limit)
|
|
|
|
|
(vc-git-make-stash-button t vc-git-show-stash len))
|
2019-10-17 13:55:06 +00:00
|
|
|
|
stash-string
|
|
|
|
|
(concat
|
|
|
|
|
(when shown-stashes
|
|
|
|
|
(concat
|
|
|
|
|
(propertize "\n"
|
|
|
|
|
'vc-git-hideable all-hideable)
|
|
|
|
|
(mapconcat
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(propertize x
|
|
|
|
|
'face 'font-lock-variable-name-face
|
|
|
|
|
'mouse-face 'highlight
|
|
|
|
|
'vc-git-hideable all-hideable
|
|
|
|
|
'help-echo stash-list-help-echo
|
|
|
|
|
'keymap vc-git-stash-map))
|
|
|
|
|
shown-stashes
|
|
|
|
|
(propertize "\n"
|
|
|
|
|
'vc-git-hideable all-hideable))))
|
|
|
|
|
(when hidden-stashes
|
|
|
|
|
(concat
|
|
|
|
|
(propertize "\n"
|
|
|
|
|
'invisible t
|
|
|
|
|
'vc-git-hideable t)
|
|
|
|
|
(mapconcat
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(propertize x
|
|
|
|
|
'face 'font-lock-variable-name-face
|
|
|
|
|
'mouse-face 'highlight
|
|
|
|
|
'invisible t
|
|
|
|
|
'vc-git-hideable t
|
|
|
|
|
'help-echo stash-list-help-echo
|
|
|
|
|
'keymap vc-git-stash-map))
|
|
|
|
|
hidden-stashes
|
|
|
|
|
(propertize "\n"
|
|
|
|
|
'invisible t
|
|
|
|
|
'vc-git-hideable t))))))))
|
2009-07-23 06:42:50 +00:00
|
|
|
|
;; FIXME: maybe use a different face when nothing is stashed.
|
2008-03-28 03:50:26 +00:00
|
|
|
|
(concat
|
|
|
|
|
(propertize "Branch : " 'face 'font-lock-type-face)
|
2009-09-15 00:11:51 +00:00
|
|
|
|
(propertize branch
|
|
|
|
|
'face 'font-lock-variable-name-face)
|
|
|
|
|
(when remote
|
|
|
|
|
(concat
|
|
|
|
|
"\n"
|
|
|
|
|
(propertize "Remote : " 'face 'font-lock-type-face)
|
|
|
|
|
(propertize remote-url
|
|
|
|
|
'face 'font-lock-variable-name-face)))
|
2013-11-19 20:23:53 +00:00
|
|
|
|
;; For now just a heading, key bindings can be added later for various bisect actions
|
2013-12-11 17:10:22 +00:00
|
|
|
|
(when (file-exists-p (expand-file-name ".git/BISECT_START" (vc-git-root dir)))
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(propertize "\nBisect : in progress" 'face 'font-lock-warning-face))
|
2013-12-11 17:10:22 +00:00
|
|
|
|
(when (file-exists-p (expand-file-name ".git/rebase-apply" (vc-git-root dir)))
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(propertize "\nRebase : in progress" 'face 'font-lock-warning-face))
|
|
|
|
|
(if stash-list
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(concat
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(propertize "\nStash : " 'face 'font-lock-type-face
|
|
|
|
|
'help-echo stash-help-echo)
|
|
|
|
|
stash-button
|
|
|
|
|
stash-string)
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(concat
|
2019-10-17 13:55:06 +00:00
|
|
|
|
(propertize "\nStash : " 'face 'font-lock-type-face
|
2009-12-03 04:08:08 +00:00
|
|
|
|
'help-echo stash-help-echo)
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(propertize "Nothing stashed"
|
2009-12-03 04:08:08 +00:00
|
|
|
|
'help-echo stash-help-echo
|
2009-09-20 19:51:35 +00:00
|
|
|
|
'face 'font-lock-variable-name-face))))))
|
2008-03-28 03:50:26 +00:00
|
|
|
|
|
2011-01-29 03:12:32 +00:00
|
|
|
|
(defun vc-git-branches ()
|
|
|
|
|
"Return the existing branches, as a list of strings.
|
|
|
|
|
The car of the list is the current branch."
|
|
|
|
|
(with-temp-buffer
|
2012-07-18 15:04:36 +00:00
|
|
|
|
(vc-git--call t "branch")
|
2011-01-29 03:12:32 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let (current-branch branches)
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(when (looking-at "^\\([ *]\\) \\(.+\\)$")
|
|
|
|
|
(if (string-equal (match-string 1) "*")
|
|
|
|
|
(setq current-branch (match-string 2))
|
|
|
|
|
(push (match-string 2) branches)))
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(cons current-branch (nreverse branches)))))
|
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;; STATE-CHANGING FUNCTIONS
|
|
|
|
|
|
|
|
|
|
(defun vc-git-create-repo ()
|
2007-08-03 04:57:05 +00:00
|
|
|
|
"Create a new Git repository."
|
2007-08-27 18:59:41 +00:00
|
|
|
|
(vc-git-command nil 0 nil "init"))
|
2007-07-22 21:16:34 +00:00
|
|
|
|
|
2014-12-01 11:23:10 +00:00
|
|
|
|
(defun vc-git-register (files &optional _comment)
|
2009-08-26 06:48:58 +00:00
|
|
|
|
"Register FILES into the git version-control system."
|
|
|
|
|
(let (flist dlist)
|
|
|
|
|
(dolist (crt files)
|
|
|
|
|
(if (file-directory-p crt)
|
|
|
|
|
(push crt dlist)
|
|
|
|
|
(push crt flist)))
|
|
|
|
|
(when flist
|
|
|
|
|
(vc-git-command nil 0 flist "update-index" "--add" "--"))
|
|
|
|
|
(when dlist
|
|
|
|
|
(vc-git-command nil 0 dlist "add"))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
(defalias 'vc-git-responsible-p 'vc-git-root)
|
|
|
|
|
|
2007-07-23 20:56:13 +00:00
|
|
|
|
(defun vc-git-unregister (file)
|
|
|
|
|
(vc-git-command nil 0 file "rm" "-f" "--cached" "--"))
|
2007-07-26 17:26:08 +00:00
|
|
|
|
|
2012-10-02 00:24:18 +00:00
|
|
|
|
(declare-function log-edit-mode "log-edit" ())
|
|
|
|
|
(declare-function log-edit-toggle-header "log-edit" (header value))
|
2010-04-21 02:05:24 +00:00
|
|
|
|
(declare-function log-edit-extract-headers "log-edit" (headers string))
|
2019-04-20 21:39:36 +00:00
|
|
|
|
(declare-function log-edit--toggle-amend "log-edit" (last-msg-fn))
|
2007-07-23 20:56:13 +00:00
|
|
|
|
|
2012-10-02 00:24:18 +00:00
|
|
|
|
(defun vc-git-log-edit-toggle-signoff ()
|
|
|
|
|
"Toggle whether to add the \"Signed-off-by\" line at the end of
|
|
|
|
|
the commit message."
|
|
|
|
|
(interactive)
|
|
|
|
|
(log-edit-toggle-header "Sign-Off" "yes"))
|
|
|
|
|
|
2018-09-04 20:50:56 +00:00
|
|
|
|
(defun vc-git-log-edit-toggle-no-verify ()
|
|
|
|
|
"Toggle whether to bypass the pre-commit and commit-msg hooks."
|
|
|
|
|
(interactive)
|
|
|
|
|
(log-edit-toggle-header "No-Verify" "yes"))
|
|
|
|
|
|
2012-10-02 00:24:18 +00:00
|
|
|
|
(defun vc-git-log-edit-toggle-amend ()
|
|
|
|
|
"Toggle whether this will amend the previous commit.
|
|
|
|
|
If toggling on, also insert its message into the buffer."
|
|
|
|
|
(interactive)
|
2019-04-20 21:39:36 +00:00
|
|
|
|
(log-edit--toggle-amend
|
|
|
|
|
(lambda ()
|
|
|
|
|
(with-output-to-string
|
|
|
|
|
(vc-git-command
|
|
|
|
|
standard-output 1 nil
|
|
|
|
|
"log" "--max-count=1" "--pretty=format:%B" "HEAD")))))
|
2012-10-02 00:24:18 +00:00
|
|
|
|
|
|
|
|
|
(defvar vc-git-log-edit-mode-map
|
|
|
|
|
(let ((map (make-sparse-keymap "Git-Log-Edit")))
|
|
|
|
|
(define-key map "\C-c\C-s" 'vc-git-log-edit-toggle-signoff)
|
2018-09-04 20:50:56 +00:00
|
|
|
|
(define-key map "\C-c\C-n" 'vc-git-log-edit-toggle-no-verify)
|
2012-10-02 00:24:18 +00:00
|
|
|
|
(define-key map "\C-c\C-e" 'vc-git-log-edit-toggle-amend)
|
|
|
|
|
map))
|
|
|
|
|
|
|
|
|
|
(define-derived-mode vc-git-log-edit-mode log-edit-mode "Log-Edit/git"
|
|
|
|
|
"Major mode for editing Git log messages.
|
|
|
|
|
It is based on `log-edit-mode', and has Git-specific extensions.")
|
|
|
|
|
|
2015-09-19 10:31:38 +00:00
|
|
|
|
(defun vc-git-checkin (files comment &optional _rev)
|
2013-09-03 18:28:06 +00:00
|
|
|
|
(let* ((file1 (or (car files) default-directory))
|
|
|
|
|
(root (vc-git-root file1))
|
|
|
|
|
(default-directory (expand-file-name root))
|
|
|
|
|
(only (or (cdr files)
|
|
|
|
|
(not (equal root (abbreviate-file-name file1)))))
|
2016-04-10 16:04:33 +00:00
|
|
|
|
(pcsw coding-system-for-write)
|
|
|
|
|
(coding-system-for-write
|
|
|
|
|
;; On MS-Windows, we must encode command-line arguments in
|
|
|
|
|
;; the system codepage.
|
|
|
|
|
(if (eq system-type 'windows-nt)
|
|
|
|
|
locale-coding-system
|
|
|
|
|
(or coding-system-for-write vc-git-commits-coding-system)))
|
|
|
|
|
(msg-file
|
|
|
|
|
;; On MS-Windows, pass the commit log message through a
|
|
|
|
|
;; file, to work around the limitation that command-line
|
|
|
|
|
;; arguments must be in the system codepage, and therefore
|
|
|
|
|
;; might not support the non-ASCII characters in the log
|
2016-11-20 15:29:47 +00:00
|
|
|
|
;; message. Handle also remote files.
|
Add `make-nearby-temp-file' and `temporary-file-directory'
* doc/lispref/files.texi (Unique File Names):
Introduce `make-nearby-temp-file' and `temporary-file-directory'.
(Magic File Names): Mention `make-nearby-temp-file' and
`temporary-file-directory'.
* etc/NEWS (provided): Mention `make-nearby-temp-file' and
`temporary-file-directory'.
* lisp/files.el (mounted-file-systems): New defcustom.
(temporary-file-directory, make-nearby-temp-file): New defuns.
(normal-backup-enable-predicate): Fix docstring.
* lisp/net/tramp-adb.el (tramp-adb-file-name-handler-alist):
* lisp/net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
* lisp/net/tramp-sh.el (tramp-sh-file-name-handler-alist):
* lisp/net/tramp-smb.el (tramp-smb-file-name-handler-alist):
<make-nearby-temp-file, temporary-file-directory>: Add handler.
* lisp/net/tramp.el (tramp-file-name-for-operation):
Add `make-nearby-temp-file' and `temporary-file-directory'.
(tramp-get-remote-tmpdir): Remove compatibility code.
(tramp-handle-temporary-file-directory)
(tramp-handle-make-nearby-temp-file): New defuns.
* lisp/org/ob-core.el (org-babel-local-file-name):
* lisp/progmodes/gud.el (gud-common-init):
* lisp/vc/vc-hooks.el (vc-user-login-name): Use `file-remote-p'.
* lisp/vc/vc-git.el (vc-git-checkin): Handle remote log message.
* test/lisp/net/tramp-tests.el (tramp-test06-directory-file-name):
Check `tramp--test-enabled'.
(tramp-test18-file-attributes): Add tests for
`file-ownership-preserved-p'.
(tramp-test27-start-file-process, tramp-test28-shell-command):
Reduce timeouts in `accept-process-output'.
(tramp-test--shell-command-to-string-asynchronously): Add timeout.
(tramp-test29-environment-variables): Remove additional sleep calls.
(tramp-test32-make-nearby-temp-file): New test.
(tramp--test-special-characters, tramp--test-utf8): Adapt docstring.
(tramp-test33-special-characters)
(tramp-test33-special-characters-with-stat)
(tramp-test33-special-characters-with-perl)
(tramp-test33-special-characters-with-ls, tramp-test34-utf8)
(tramp-test34-utf8-with-stat, tramp-test34-utf8-with-perl)
(tramp-test34-utf8-with-ls)
(tramp-test35-asynchronous-requests)
(tramp-test36-recursive-load, tramp-test37-unload): Rename.
(tramp--test-ftp-p): Simplify check.
(tramp--test-sh-p): New defun.
(tramp-test20-file-modes, tramp-test22-file-times)
(tramp-test26-process-file, tramp-test27-start-file-process)
(tramp-test28-shell-command)
(tramp-test29-environment-variables)
(tramp-test30-vc-registered)
(tramp-test33-special-characters-with-stat)
(tramp-test33-special-characters-with-perl)
(tramp-test33-special-characters-with-ls)
(tramp-test34-utf8-with-stat, tramp-test34-utf8-with-perl)
(tramp-test34-utf8-with-ls)
(tramp-test35-asynchronous-requests): Use it.
2016-08-07 11:57:23 +00:00
|
|
|
|
(if (eq system-type 'windows-nt)
|
2016-11-20 15:29:47 +00:00
|
|
|
|
(let ((default-directory (file-name-directory file1)))
|
2017-06-04 07:59:49 +00:00
|
|
|
|
(make-nearby-temp-file "git-msg")))))
|
2012-10-02 00:24:18 +00:00
|
|
|
|
(cl-flet ((boolean-arg-fn
|
|
|
|
|
(argument)
|
|
|
|
|
(lambda (value) (when (equal value "yes") (list argument)))))
|
2014-06-29 20:48:55 +00:00
|
|
|
|
;; When operating on the whole tree, better pass "-a" than ".", since "."
|
2013-09-03 18:28:06 +00:00
|
|
|
|
;; fails when we're committing a merge.
|
|
|
|
|
(apply 'vc-git-command nil 0 (if only files)
|
2017-06-04 07:59:49 +00:00
|
|
|
|
(nconc (if msg-file (list "commit" "-F"
|
|
|
|
|
(file-local-name msg-file))
|
2016-04-10 16:04:33 +00:00
|
|
|
|
(list "commit" "-m"))
|
|
|
|
|
(let ((args
|
|
|
|
|
(log-edit-extract-headers
|
|
|
|
|
`(("Author" . "--author")
|
|
|
|
|
("Date" . "--date")
|
|
|
|
|
("Amend" . ,(boolean-arg-fn "--amend"))
|
2018-09-04 20:50:56 +00:00
|
|
|
|
("No-Verify" . ,(boolean-arg-fn "--no-verify"))
|
2016-04-10 16:04:33 +00:00
|
|
|
|
("Sign-Off" . ,(boolean-arg-fn "--signoff")))
|
|
|
|
|
comment)))
|
|
|
|
|
(when msg-file
|
|
|
|
|
(let ((coding-system-for-write
|
|
|
|
|
(or pcsw vc-git-commits-coding-system)))
|
|
|
|
|
(write-region (car args) nil msg-file))
|
|
|
|
|
(setq args (cdr args)))
|
|
|
|
|
args)
|
|
|
|
|
(if only (list "--only" "--") '("-a")))))
|
|
|
|
|
(if (and msg-file (file-exists-p msg-file)) (delete-file msg-file))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-10-10 18:52:45 +00:00
|
|
|
|
(defun vc-git-find-revision (file rev buffer)
|
2009-08-25 09:01:38 +00:00
|
|
|
|
(let* (process-file-side-effects
|
|
|
|
|
(coding-system-for-read 'binary)
|
|
|
|
|
(coding-system-for-write 'binary)
|
2010-06-22 19:25:17 +00:00
|
|
|
|
(fullname
|
|
|
|
|
(let ((fn (vc-git--run-command-string
|
|
|
|
|
file "ls-files" "-z" "--full-name" "--")))
|
|
|
|
|
;; ls-files does not return anything when looking for a
|
|
|
|
|
;; revision of a file that has been renamed or removed.
|
|
|
|
|
(if (string= fn "")
|
|
|
|
|
(file-relative-name file (vc-git-root default-directory))
|
|
|
|
|
(substring fn 0 -1)))))
|
2007-07-26 17:26:08 +00:00
|
|
|
|
(vc-git-command
|
|
|
|
|
buffer 0
|
2010-06-22 19:25:17 +00:00
|
|
|
|
nil
|
|
|
|
|
"cat-file" "blob" (concat (if rev rev "HEAD") ":" fullname))))
|
2007-07-23 16:01:25 +00:00
|
|
|
|
|
2013-08-04 02:55:45 +00:00
|
|
|
|
(defun vc-git-find-ignore-file (file)
|
2016-01-27 21:04:33 +00:00
|
|
|
|
"Return the git ignore file that controls FILE."
|
2013-08-04 02:55:45 +00:00
|
|
|
|
(expand-file-name ".gitignore"
|
|
|
|
|
(vc-git-root file)))
|
2013-07-30 00:25:31 +00:00
|
|
|
|
|
2014-11-20 08:52:24 +00:00
|
|
|
|
(defun vc-git-checkout (file &optional rev)
|
2007-07-24 13:15:04 +00:00
|
|
|
|
(vc-git-command nil 0 file "checkout" (or rev "HEAD")))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-revert (file &optional contents-done)
|
|
|
|
|
"Revert FILE to the version stored in the git repository."
|
|
|
|
|
(if contents-done
|
2007-07-23 16:01:25 +00:00
|
|
|
|
(vc-git-command nil 0 file "update-index" "--")
|
2009-12-06 21:25:55 +00:00
|
|
|
|
(vc-git-command nil 0 file "reset" "-q" "--")
|
|
|
|
|
(vc-git-command nil nil file "checkout" "-q" "--")))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2012-07-19 14:38:01 +00:00
|
|
|
|
(defvar vc-git-error-regexp-alist
|
2017-11-03 16:00:35 +00:00
|
|
|
|
'(("^ \\(.+\\)\\> *|" 1 nil nil 0))
|
2012-07-19 14:38:01 +00:00
|
|
|
|
"Value of `compilation-error-regexp-alist' in *vc-git* buffers.")
|
|
|
|
|
|
2013-09-12 05:45:42 +00:00
|
|
|
|
;; To be called via vc-pull from vc.el, which requires vc-dispatcher.
|
|
|
|
|
(declare-function vc-compilation-mode "vc-dispatcher" (backend))
|
2018-02-23 19:14:58 +00:00
|
|
|
|
(defvar compilation-directory)
|
|
|
|
|
(defvar compilation-arguments)
|
2013-09-12 05:45:42 +00:00
|
|
|
|
|
2017-11-01 23:13:46 +00:00
|
|
|
|
(defun vc-git--pushpull (command prompt extra-args)
|
2015-05-13 00:42:42 +00:00
|
|
|
|
"Run COMMAND (a string; either push or pull) on the current Git branch.
|
|
|
|
|
If PROMPT is non-nil, prompt for the Git command to run."
|
2011-01-29 03:12:32 +00:00
|
|
|
|
(let* ((root (vc-git-root default-directory))
|
|
|
|
|
(buffer (format "*vc-git : %s*" (expand-file-name root)))
|
2011-03-10 08:26:41 +00:00
|
|
|
|
(git-program vc-git-program)
|
2011-01-29 03:12:32 +00:00
|
|
|
|
args)
|
|
|
|
|
;; If necessary, prompt for the exact command.
|
2015-05-13 00:42:42 +00:00
|
|
|
|
;; TODO if pushing, prompt if no default push location - cf bzr.
|
2011-01-29 03:12:32 +00:00
|
|
|
|
(when prompt
|
|
|
|
|
(setq args (split-string
|
2015-05-13 00:42:42 +00:00
|
|
|
|
(read-shell-command
|
|
|
|
|
(format "Git %s command: " command)
|
|
|
|
|
(format "%s %s" git-program command)
|
|
|
|
|
'vc-git-history)
|
2011-01-29 03:12:32 +00:00
|
|
|
|
" " t))
|
|
|
|
|
(setq git-program (car args)
|
|
|
|
|
command (cadr args)
|
|
|
|
|
args (cddr args)))
|
2017-11-03 16:00:35 +00:00
|
|
|
|
(setq args (nconc args extra-args))
|
2013-09-12 05:45:42 +00:00
|
|
|
|
(require 'vc-dispatcher)
|
2011-01-29 21:19:21 +00:00
|
|
|
|
(apply 'vc-do-async-command buffer root git-program command args)
|
2016-12-07 01:31:54 +00:00
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(vc-run-delayed
|
|
|
|
|
(vc-compilation-mode 'git)
|
|
|
|
|
(setq-local compile-command
|
2017-11-03 16:00:35 +00:00
|
|
|
|
(concat git-program " " command " "
|
|
|
|
|
(mapconcat 'identity args " ")))
|
2017-05-22 19:48:21 +00:00
|
|
|
|
(setq-local compilation-directory root)
|
|
|
|
|
;; Either set `compilation-buffer-name-function' locally to nil
|
|
|
|
|
;; or use `compilation-arguments' to set `name-function'.
|
|
|
|
|
;; See `compilation-buffer-name'.
|
|
|
|
|
(setq-local compilation-arguments
|
|
|
|
|
(list compile-command nil
|
|
|
|
|
(lambda (_name-of-mode) buffer)
|
|
|
|
|
nil))))
|
2011-01-29 21:19:21 +00:00
|
|
|
|
(vc-set-async-update buffer)))
|
2011-01-29 03:12:32 +00:00
|
|
|
|
|
2015-05-13 00:42:42 +00:00
|
|
|
|
(defun vc-git-pull (prompt)
|
|
|
|
|
"Pull changes into the current Git branch.
|
|
|
|
|
Normally, this runs \"git pull\". If PROMPT is non-nil, prompt
|
|
|
|
|
for the Git command to run."
|
2017-11-03 16:00:35 +00:00
|
|
|
|
(vc-git--pushpull "pull" prompt '("--stat")))
|
2015-05-13 00:42:42 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-push (prompt)
|
|
|
|
|
"Push changes from the current Git branch.
|
|
|
|
|
Normally, this runs \"git push\". If PROMPT is non-nil, prompt
|
|
|
|
|
for the Git command to run."
|
2017-11-03 16:00:35 +00:00
|
|
|
|
(vc-git--pushpull "push" prompt nil))
|
2015-05-13 00:42:42 +00:00
|
|
|
|
|
2011-01-29 03:12:32 +00:00
|
|
|
|
(defun vc-git-merge-branch ()
|
|
|
|
|
"Merge changes into the current Git branch.
|
|
|
|
|
This prompts for a branch to merge from."
|
|
|
|
|
(let* ((root (vc-git-root default-directory))
|
|
|
|
|
(buffer (format "*vc-git : %s*" (expand-file-name root)))
|
|
|
|
|
(branches (cdr (vc-git-branches)))
|
|
|
|
|
(merge-source
|
2011-01-29 21:19:21 +00:00
|
|
|
|
(completing-read "Merge from branch: "
|
|
|
|
|
(if (or (member "FETCH_HEAD" branches)
|
|
|
|
|
(not (file-readable-p
|
|
|
|
|
(expand-file-name ".git/FETCH_HEAD"
|
|
|
|
|
root))))
|
|
|
|
|
branches
|
|
|
|
|
(cons "FETCH_HEAD" branches))
|
|
|
|
|
nil t)))
|
2011-03-10 08:26:41 +00:00
|
|
|
|
(apply 'vc-do-async-command buffer root vc-git-program "merge"
|
2011-01-29 21:19:21 +00:00
|
|
|
|
(list merge-source))
|
* lisp/vc/vc-dispatcher.el (vc-run-delayed): New macro.
(vc-do-command, vc-set-async-update):
* lisp/vc/vc-mtn.el (vc-mtn-dir-status):
* lisp/vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
(vc-hg-pull, vc-hg-merge-branch):
* lisp/vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
(vc-git-merge-branch):
* lisp/vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
(vc-cvs-dir-status-files):
* lisp/vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
(vc-bzr-dir-status-files):
* lisp/vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
* lisp/vc/vc-annotate.el: Use lexical-binding.
(vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
(vc-sentinel-movepoint): Declare.
(vc-annotate): Don't use `goto-line'.
* lisp/vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
(vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
(vc-sentinel-movepoint): Declare.
* lisp/vc/vc-svn.el: Use lexical-binding.
(vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
* lisp/vc/vc-sccs.el:
* lisp/vc/vc-rcs.el: Use lexical-binding.
2013-09-04 21:09:42 +00:00
|
|
|
|
(with-current-buffer buffer (vc-run-delayed (vc-compilation-mode 'git)))
|
2011-01-29 21:19:21 +00:00
|
|
|
|
(vc-set-async-update buffer)))
|
2011-01-29 03:12:32 +00:00
|
|
|
|
|
2014-08-13 08:05:45 +00:00
|
|
|
|
(defun vc-git-conflicted-files (directory)
|
|
|
|
|
"Return the list of files with conflicts in DIRECTORY."
|
|
|
|
|
(let* ((status
|
|
|
|
|
(vc-git--run-command-string directory "status" "--porcelain" "--"))
|
2014-09-04 16:34:45 +00:00
|
|
|
|
(lines (when status (split-string status "\n" 'omit-nulls)))
|
2014-08-13 08:05:45 +00:00
|
|
|
|
files)
|
|
|
|
|
(dolist (line lines files)
|
|
|
|
|
(when (string-match "\\([ MADRCU?!][ MADRCU?!]\\) \\(.+\\)\\(?: -> \\(.+\\)\\)?"
|
|
|
|
|
line)
|
|
|
|
|
(let ((state (match-string 1 line))
|
|
|
|
|
(file (match-string 2 line)))
|
|
|
|
|
;; See git-status(1).
|
|
|
|
|
(when (member state '("AU" "UD" "UA" ;; "DD"
|
|
|
|
|
"DU" "AA" "UU"))
|
2014-12-01 18:15:28 +00:00
|
|
|
|
(push (expand-file-name file directory) files)))))))
|
2014-08-13 08:05:45 +00:00
|
|
|
|
|
2017-09-12 23:30:45 +00:00
|
|
|
|
;; Everywhere but here, follows vc-git-command, which uses vc-do-command
|
|
|
|
|
;; from vc-dispatcher.
|
|
|
|
|
(autoload 'vc-resynch-buffer "vc-dispatcher")
|
|
|
|
|
|
2014-08-13 08:42:33 +00:00
|
|
|
|
(defun vc-git-resolve-when-done ()
|
|
|
|
|
"Call \"git add\" if the conflict markers have been removed."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(unless (re-search-forward "^<<<<<<< " nil t)
|
2015-05-16 13:14:01 +00:00
|
|
|
|
(vc-git-command nil 0 buffer-file-name "add")
|
2015-05-16 14:11:33 +00:00
|
|
|
|
(unless (or
|
|
|
|
|
(not (eq vc-git-resolve-conflicts 'unstage-maybe))
|
|
|
|
|
;; Doing a merge, so bug#20292 doesn't apply.
|
|
|
|
|
(file-exists-p (expand-file-name ".git/MERGE_HEAD"
|
|
|
|
|
(vc-git-root buffer-file-name)))
|
|
|
|
|
(vc-git-conflicted-files (vc-git-root buffer-file-name)))
|
2015-05-16 13:14:01 +00:00
|
|
|
|
(vc-git-command nil 0 nil "reset"))
|
2017-09-12 23:30:45 +00:00
|
|
|
|
(vc-resynch-buffer buffer-file-name t t)
|
2014-08-13 08:42:33 +00:00
|
|
|
|
;; Remove the hook so that it is not called multiple times.
|
|
|
|
|
(remove-hook 'after-save-hook 'vc-git-resolve-when-done t))))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-find-file-hook ()
|
|
|
|
|
"Activate `smerge-mode' if there is a conflict."
|
2015-04-22 01:45:43 +00:00
|
|
|
|
(when (and buffer-file-name
|
2018-06-28 00:14:56 +00:00
|
|
|
|
(eq (vc-state buffer-file-name 'Git) 'conflict)
|
2015-04-22 01:45:43 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(re-search-forward "^<<<<<<< " nil 'noerror)))
|
|
|
|
|
(smerge-start-session)
|
2015-05-16 13:14:01 +00:00
|
|
|
|
(when vc-git-resolve-conflicts
|
|
|
|
|
(add-hook 'after-save-hook 'vc-git-resolve-when-done nil 'local))
|
2015-11-09 21:57:23 +00:00
|
|
|
|
(vc-message-unresolved-conflicts buffer-file-name)))
|
2014-08-13 08:05:45 +00:00
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;; HISTORY FUNCTIONS
|
|
|
|
|
|
Silence the rest of vc compilation
* vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff, vc-resynch-buffer):
Declare.
(vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
* vc/vc-git.el (vc-exec-after, vc-set-async-update, grep-read-regexp)
(grep-read-files, grep-expand-template, vc-dir-refresh): Declare.
(vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
* vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
(vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
* vc/vc-sccs.el (vc-file-tree-walk): Declare.
(vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
(vc-tag-precondition, vc-rename-master): Autoload.
2013-05-28 07:47:11 +00:00
|
|
|
|
(autoload 'vc-setup-buffer "vc-dispatcher")
|
|
|
|
|
|
2016-11-15 04:37:33 +00:00
|
|
|
|
(defcustom vc-git-print-log-follow nil
|
2018-02-04 21:58:37 +00:00
|
|
|
|
"If true, follow renames in Git logs for a single file."
|
2016-11-15 04:37:33 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:version "26.1")
|
|
|
|
|
|
2009-12-07 09:02:11 +00:00
|
|
|
|
(defun vc-git-print-log (files buffer &optional shortlog start-revision limit)
|
2013-04-24 07:52:00 +00:00
|
|
|
|
"Print commit log associated with FILES into specified BUFFER.
|
|
|
|
|
If SHORTLOG is non-nil, use a short format based on `vc-git-root-log-format'.
|
|
|
|
|
\(This requires at least Git version 1.5.6, for the --graph option.)
|
|
|
|
|
If START-REVISION is non-nil, it is the newest revision to show.
|
2019-03-25 21:45:31 +00:00
|
|
|
|
If LIMIT is a number, show no more than this many entries.
|
|
|
|
|
If LIMIT is a revision string, use it as an end-revision."
|
2016-04-02 09:25:15 +00:00
|
|
|
|
(let ((coding-system-for-read
|
2016-04-10 16:04:33 +00:00
|
|
|
|
(or coding-system-for-read vc-git-log-output-coding-system)))
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;; `vc-do-command' creates the buffer, but we need it before running
|
|
|
|
|
;; the command.
|
|
|
|
|
(vc-setup-buffer buffer)
|
|
|
|
|
;; If the buffer exists from a previous invocation it might be
|
|
|
|
|
;; read-only.
|
|
|
|
|
(let ((inhibit-read-only t))
|
2019-06-10 00:58:53 +00:00
|
|
|
|
(with-current-buffer
|
|
|
|
|
buffer
|
2009-12-06 22:18:03 +00:00
|
|
|
|
(apply 'vc-git-command buffer
|
|
|
|
|
'async files
|
|
|
|
|
(append
|
2016-11-15 04:37:33 +00:00
|
|
|
|
'("log" "--no-color")
|
|
|
|
|
(when (and vc-git-print-log-follow
|
2018-02-04 21:58:37 +00:00
|
|
|
|
(null (cdr files))
|
|
|
|
|
(car files)
|
|
|
|
|
(not (file-directory-p (car files))))
|
|
|
|
|
;; "--follow" on directories or multiple files is broken
|
2016-11-15 04:37:33 +00:00
|
|
|
|
;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=8756
|
|
|
|
|
;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=16422
|
|
|
|
|
(list "--follow"))
|
2009-12-06 22:18:03 +00:00
|
|
|
|
(when shortlog
|
2011-02-14 01:49:24 +00:00
|
|
|
|
`("--graph" "--decorate" "--date=short"
|
|
|
|
|
,(format "--pretty=tformat:%s"
|
|
|
|
|
(car vc-git-root-log-format))
|
|
|
|
|
"--abbrev-commit"))
|
2019-03-25 21:45:31 +00:00
|
|
|
|
(when (numberp limit)
|
|
|
|
|
(list "-n" (format "%s" limit)))
|
|
|
|
|
(when start-revision
|
|
|
|
|
(if (and limit (not (numberp limit)))
|
|
|
|
|
(list (concat start-revision ".." (if (equal limit "")
|
|
|
|
|
"HEAD"
|
|
|
|
|
limit)))
|
|
|
|
|
(list start-revision)))
|
2009-12-06 22:18:03 +00:00
|
|
|
|
'("--")))))))
|
2007-07-22 21:16:34 +00:00
|
|
|
|
|
2010-04-07 05:56:35 +00:00
|
|
|
|
(defun vc-git-log-outgoing (buffer remote-location)
|
2017-09-16 18:30:36 +00:00
|
|
|
|
(vc-setup-buffer buffer)
|
2010-04-07 05:56:35 +00:00
|
|
|
|
(vc-git-command
|
2017-02-15 12:12:18 +00:00
|
|
|
|
buffer 'async nil
|
2010-06-03 23:26:39 +00:00
|
|
|
|
"log"
|
|
|
|
|
"--no-color" "--graph" "--decorate" "--date=short"
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(format "--pretty=tformat:%s" (car vc-git-root-log-format))
|
|
|
|
|
"--abbrev-commit"
|
2010-06-03 23:26:39 +00:00
|
|
|
|
(concat (if (string= remote-location "")
|
2010-06-05 09:56:22 +00:00
|
|
|
|
"@{upstream}"
|
2010-06-03 23:26:39 +00:00
|
|
|
|
remote-location)
|
|
|
|
|
"..HEAD")))
|
2010-06-01 10:40:09 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-log-incoming (buffer remote-location)
|
2017-09-16 18:30:36 +00:00
|
|
|
|
(vc-setup-buffer buffer)
|
2010-06-03 23:26:39 +00:00
|
|
|
|
(vc-git-command nil 0 nil "fetch")
|
2010-06-01 10:40:09 +00:00
|
|
|
|
(vc-git-command
|
2017-02-15 12:12:18 +00:00
|
|
|
|
buffer 'async nil
|
2011-02-14 01:49:24 +00:00
|
|
|
|
"log"
|
2010-06-03 23:26:39 +00:00
|
|
|
|
"--no-color" "--graph" "--decorate" "--date=short"
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(format "--pretty=tformat:%s" (car vc-git-root-log-format))
|
|
|
|
|
"--abbrev-commit"
|
2010-06-03 23:26:39 +00:00
|
|
|
|
(concat "HEAD.." (if (string= remote-location "")
|
2010-06-05 09:56:22 +00:00
|
|
|
|
"@{upstream}"
|
2010-06-03 23:26:39 +00:00
|
|
|
|
remote-location))))
|
2010-04-07 05:56:35 +00:00
|
|
|
|
|
2019-07-15 22:27:19 +00:00
|
|
|
|
(defun vc-git-log-search (buffer pattern)
|
2019-07-24 23:21:28 +00:00
|
|
|
|
"Search the log of changes for PATTERN and output results into BUFFER.
|
|
|
|
|
|
|
|
|
|
PATTERN is a basic regular expression by default in Git.
|
|
|
|
|
|
|
|
|
|
Display all entries that match log messages in long format.
|
|
|
|
|
With a prefix argument, ask for a command to run that will output
|
|
|
|
|
log entries."
|
2019-07-15 22:27:19 +00:00
|
|
|
|
(let ((args `("log" "--no-color" "-i"
|
2019-07-18 22:35:27 +00:00
|
|
|
|
,(format "--grep=%s" (or pattern "")))))
|
2019-07-15 22:27:19 +00:00
|
|
|
|
(when current-prefix-arg
|
|
|
|
|
(setq args (cdr (split-string
|
|
|
|
|
(read-shell-command
|
|
|
|
|
"Search log with command: "
|
|
|
|
|
(format "%s %s" vc-git-program
|
|
|
|
|
(mapconcat 'identity args " "))
|
|
|
|
|
'vc-git-history)
|
|
|
|
|
" " t))))
|
|
|
|
|
(vc-setup-buffer buffer)
|
|
|
|
|
(apply 'vc-git-command buffer 'async nil args)))
|
|
|
|
|
|
2019-03-25 21:45:31 +00:00
|
|
|
|
(defun vc-git-mergebase (rev1 &optional rev2)
|
|
|
|
|
(unless rev2 (setq rev2 "HEAD"))
|
|
|
|
|
(string-trim-right (vc-git--run-command-string nil "merge-base" rev1 rev2)))
|
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
(defvar log-view-message-re)
|
|
|
|
|
(defvar log-view-file-re)
|
|
|
|
|
(defvar log-view-font-lock-keywords)
|
2008-07-05 18:42:07 +00:00
|
|
|
|
(defvar log-view-per-file-logs)
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(defvar log-view-expanded-log-entry-function)
|
2007-07-22 21:16:34 +00:00
|
|
|
|
|
2007-08-03 04:57:05 +00:00
|
|
|
|
(define-derived-mode vc-git-log-view-mode log-view-mode "Git-Log-View"
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(require 'add-log) ;; We need the faces add-log.
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;; Don't have file markers, so use impossible regexp.
|
Add standard unmatchable regexp
Add `regexp-unmatchable' as a standard unmatchable regexp, defined as
"\\`a\\`". Use it where such a regexp is needed, replacing slower
expressions in several places.
From a suggestion by Philippe Schnoebelen.
* lisp/subr.el (regexp-unmatchable): New defconst.
* etc/NEWS (Lisp Changes): Mention `regexp-unmatchable'.
* doc/lispref/searching.texi (Regexp Functions): Document it.
* lisp/emacs-lisp/regexp-opt.el (regexp-opt)
* lisp/progmodes/cc-defs.el (cc-conditional-require-after-load)
(c-make-keywords-re)
* lisp/progmodes/cc-engine.el (c-beginning-of-statement-1)
(c-forward-<>-arglist-recur, c-forward-decl-or-cast-1)
(c-looking-at-decl-block)
* lisp/progmodes/cc-fonts.el (c-doc-line-join-re)
(c-doc-bright-comment-start-re)
* lisp/progmodes/cc-langs.el (c-populate-syntax-table)
(c-assignment-op-regexp)
(c-block-comment-ender-regexp, c-font-lock-comment-end-skip)
(c-block-comment-start-regexp, c-line-comment-start-regexp)
(c-doc-comment-start-regexp, c-decl-start-colon-kwd-re)
(c-type-decl-prefix-key, c-type-decl-operator-prefix-key)
(c-pre-id-bracelist-key, c-enum-clause-introduction-re)
(c-nonlabel-token-2-key)
* lisp/progmodes/cc-mode.el (c-doc-fl-decl-start, c-doc-fl-decl-end)
* lisp/progmodes/cc-vars.el (c-noise-macro-with-parens-name-re)
(c-noise-macro-name-re, c-make-noise-macro-regexps)
* lisp/progmodes/octave.el (octave-help-mode)
* lisp/vc/vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-revision-completion-table)
* lisp/vc/vc-git.el (vc-git-log-view-mode)
* lisp/vc/vc-hg.el (vc-hg-log-view-mode)
* lisp/vc/vc-mtn.el (vc-mtn-log-view-mode):
Use `regexp-unmatchable'.
* lisp/textmodes/ispell.el (ispell-non-empty-string):
Use `regexp-unmatchable', fixing a broken never-match regexp.
2019-05-14 09:43:49 +00:00
|
|
|
|
(set (make-local-variable 'log-view-file-re) regexp-unmatchable)
|
2008-07-05 18:42:07 +00:00
|
|
|
|
(set (make-local-variable 'log-view-per-file-logs) nil)
|
2007-07-22 21:16:34 +00:00
|
|
|
|
(set (make-local-variable 'log-view-message-re)
|
2019-07-15 22:27:19 +00:00
|
|
|
|
(if (not (memq vc-log-view-type '(long log-search)))
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(cadr vc-git-root-log-format)
|
2009-09-15 17:52:42 +00:00
|
|
|
|
"^commit *\\([0-9a-z]+\\)"))
|
2014-11-05 19:59:31 +00:00
|
|
|
|
;; Allow expanding short log entries.
|
2019-03-25 21:45:31 +00:00
|
|
|
|
(when (memq vc-log-view-type '(short log-outgoing log-incoming mergebase))
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(setq truncate-lines t)
|
|
|
|
|
(set (make-local-variable 'log-view-expanded-log-entry-function)
|
|
|
|
|
'vc-git-expanded-log-entry))
|
2007-07-22 21:16:34 +00:00
|
|
|
|
(set (make-local-variable 'log-view-font-lock-keywords)
|
2019-07-15 22:27:19 +00:00
|
|
|
|
(if (not (memq vc-log-view-type '(long log-search)))
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(list (cons (nth 1 vc-git-root-log-format)
|
|
|
|
|
(nth 2 vc-git-root-log-format)))
|
|
|
|
|
(append
|
2012-07-25 05:48:19 +00:00
|
|
|
|
`((,log-view-message-re (1 'change-log-acknowledgment)))
|
2011-02-14 01:49:24 +00:00
|
|
|
|
;; Handle the case:
|
|
|
|
|
;; user: foo@bar
|
|
|
|
|
'(("^Author:[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)"
|
|
|
|
|
(1 'change-log-email))
|
|
|
|
|
;; Handle the case:
|
|
|
|
|
;; user: FirstName LastName <foo@bar>
|
|
|
|
|
("^Author:[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]"
|
|
|
|
|
(1 'change-log-name)
|
|
|
|
|
(2 'change-log-email))
|
|
|
|
|
("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)"
|
|
|
|
|
(1 'change-log-name))
|
|
|
|
|
("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]"
|
|
|
|
|
(1 'change-log-name)
|
|
|
|
|
(2 'change-log-email))
|
|
|
|
|
("^Merge: \\([0-9a-z]+\\) \\([0-9a-z]+\\)"
|
2012-07-25 05:48:19 +00:00
|
|
|
|
(1 'change-log-acknowledgment)
|
|
|
|
|
(2 'change-log-acknowledgment))
|
2011-02-14 01:49:24 +00:00
|
|
|
|
("^Date: \\(.+\\)" (1 'change-log-date))
|
2009-09-14 04:38:49 +00:00
|
|
|
|
("^summary:[ \t]+\\(.+\\)" (1 'log-view-message)))))))
|
|
|
|
|
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-11-24 13:46:30 +00:00
|
|
|
|
(defun vc-git-show-log-entry (revision)
|
|
|
|
|
"Move to the log entry for REVISION.
|
|
|
|
|
REVISION may have the form BRANCH, BRANCH~N,
|
|
|
|
|
or BRANCH^ (where \"^\" can be repeated)."
|
|
|
|
|
(goto-char (point-min))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(prog1
|
|
|
|
|
(when revision
|
|
|
|
|
(search-forward
|
|
|
|
|
(format "\ncommit %s" revision) nil t
|
|
|
|
|
(cond ((string-match "~\\([0-9]\\)\\'" revision)
|
|
|
|
|
(1+ (string-to-number (match-string 1 revision))))
|
|
|
|
|
((string-match "\\^+\\'" revision)
|
|
|
|
|
(1+ (length (match-string 0 revision))))
|
|
|
|
|
(t nil))))
|
|
|
|
|
(beginning-of-line)))
|
2007-11-24 13:46:30 +00:00
|
|
|
|
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(defun vc-git-expanded-log-entry (revision)
|
|
|
|
|
(with-temp-buffer
|
2015-05-18 12:49:13 +00:00
|
|
|
|
(apply 'vc-git-command t nil nil (list "log" revision "-1" "--"))
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(unless (eobp)
|
|
|
|
|
;; Indent the expanded log entry.
|
2016-02-28 04:48:45 +00:00
|
|
|
|
(while (re-search-forward "^ " nil t)
|
|
|
|
|
(replace-match "")
|
|
|
|
|
(forward-line))
|
2011-02-14 01:49:24 +00:00
|
|
|
|
(buffer-string))))
|
|
|
|
|
|
2014-11-05 23:12:07 +00:00
|
|
|
|
(defun vc-git-region-history (file buffer lfrom lto)
|
2016-12-08 06:53:58 +00:00
|
|
|
|
"Insert into BUFFER the history of FILE for lines LFROM to LTO.
|
|
|
|
|
This requires git 1.8.4 or later, for the \"-L\" option of \"git log\"."
|
2015-10-02 19:24:23 +00:00
|
|
|
|
;; The "git log" command below interprets the line numbers as applying
|
|
|
|
|
;; to the HEAD version of the file, not to the current state of the file.
|
|
|
|
|
;; So we need to look at all the local changes and adjust lfrom/lto
|
|
|
|
|
;; accordingly.
|
|
|
|
|
;; FIXME: Maybe this should be done in vc.el (i.e. for all backends), but
|
|
|
|
|
;; since Git is the only backend to support this operation so far, it's hard
|
|
|
|
|
;; to tell.
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(vc-call-backend 'git 'diff file "HEAD" nil (current-buffer))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((last-offset 0)
|
|
|
|
|
(from-offset nil)
|
|
|
|
|
(to-offset nil))
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
"^@@ -\\([0-9]+\\),\\([0-9]+\\) \\+\\([0-9]+\\),\\([0-9]+\\) @@" nil t)
|
|
|
|
|
(let ((headno (string-to-number (match-string 1)))
|
|
|
|
|
(headcnt (string-to-number (match-string 2)))
|
|
|
|
|
(curno (string-to-number (match-string 3)))
|
|
|
|
|
(curcnt (string-to-number (match-string 4))))
|
|
|
|
|
(cl-assert (equal (- curno headno) last-offset))
|
|
|
|
|
(and (null from-offset) (> curno lfrom)
|
|
|
|
|
(setq from-offset last-offset))
|
|
|
|
|
(and (null to-offset) (> curno lto)
|
|
|
|
|
(setq to-offset last-offset))
|
|
|
|
|
(setq last-offset
|
|
|
|
|
(- (+ curno curcnt) (+ headno headcnt)))))
|
|
|
|
|
(setq lto (- lto (or to-offset last-offset)))
|
|
|
|
|
(setq lfrom (- lfrom (or to-offset last-offset)))))
|
2014-11-05 23:12:07 +00:00
|
|
|
|
(vc-git-command buffer 'async nil "log" "-p" ;"--follow" ;FIXME: not supported?
|
|
|
|
|
(format "-L%d,%d:%s" lfrom lto (file-relative-name file))))
|
|
|
|
|
|
|
|
|
|
(require 'diff-mode)
|
|
|
|
|
|
|
|
|
|
(defvar vc-git-region-history-mode-map
|
|
|
|
|
(let ((map (make-composed-keymap
|
|
|
|
|
nil (make-composed-keymap
|
|
|
|
|
(list diff-mode-map vc-git-log-view-mode-map)))))
|
|
|
|
|
map))
|
|
|
|
|
|
|
|
|
|
(defvar vc-git--log-view-long-font-lock-keywords nil)
|
|
|
|
|
(defvar font-lock-keywords)
|
|
|
|
|
(defvar vc-git-region-history-font-lock-keywords
|
2018-11-05 00:22:15 +00:00
|
|
|
|
'((vc-git-region-history-font-lock)))
|
2014-11-05 23:12:07 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-region-history-font-lock (limit)
|
|
|
|
|
(let ((in-diff (save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(or (looking-at "^\\(?:diff\\|commit\\)\\>")
|
|
|
|
|
(re-search-backward "^\\(?:diff\\|commit\\)\\>" nil t))
|
|
|
|
|
(eq ?d (char-after (match-beginning 0))))))
|
|
|
|
|
(while
|
|
|
|
|
(let ((end (save-excursion
|
|
|
|
|
(if (re-search-forward "\n\\(diff\\|commit\\)\\>"
|
|
|
|
|
limit t)
|
|
|
|
|
(match-beginning 1)
|
|
|
|
|
limit))))
|
|
|
|
|
(let ((font-lock-keywords (if in-diff diff-font-lock-keywords
|
|
|
|
|
vc-git--log-view-long-font-lock-keywords)))
|
|
|
|
|
(font-lock-fontify-keywords-region (point) end))
|
|
|
|
|
(goto-char end)
|
|
|
|
|
(prog1 (< (point) limit)
|
|
|
|
|
(setq in-diff (eq ?d (char-after))))))
|
|
|
|
|
nil))
|
|
|
|
|
|
|
|
|
|
(define-derived-mode vc-git-region-history-mode
|
|
|
|
|
vc-git-log-view-mode "Git-Region-History"
|
|
|
|
|
"Major mode to browse Git's \"log -p\" output."
|
|
|
|
|
(setq-local vc-git--log-view-long-font-lock-keywords
|
|
|
|
|
log-view-font-lock-keywords)
|
|
|
|
|
(setq-local font-lock-defaults
|
|
|
|
|
(cons 'vc-git-region-history-font-lock-keywords
|
|
|
|
|
(cdr font-lock-defaults))))
|
|
|
|
|
|
2016-06-19 19:08:21 +00:00
|
|
|
|
(defun vc-git--asciify-coding-system ()
|
|
|
|
|
;; Try to reconcile the content encoding with the encoding of Git's
|
|
|
|
|
;; auxiliary output (which is ASCII or ASCII-compatible), bug#23595.
|
|
|
|
|
(unless (let ((samp "Binary files differ"))
|
|
|
|
|
(string-equal samp (decode-coding-string
|
|
|
|
|
samp coding-system-for-read t)))
|
|
|
|
|
(setq coding-system-for-read 'undecided)))
|
2014-11-05 23:12:07 +00:00
|
|
|
|
|
Silence the rest of vc compilation
* vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff, vc-resynch-buffer):
Declare.
(vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
* vc/vc-git.el (vc-exec-after, vc-set-async-update, grep-read-regexp)
(grep-read-files, grep-expand-template, vc-dir-refresh): Declare.
(vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
* vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
(vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
* vc/vc-sccs.el (vc-file-tree-walk): Declare.
(vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
(vc-tag-precondition, vc-rename-master): Autoload.
2013-05-28 07:47:11 +00:00
|
|
|
|
(autoload 'vc-switches "vc")
|
|
|
|
|
|
2015-11-22 04:59:50 +00:00
|
|
|
|
(defun vc-git-diff (files &optional rev1 rev2 buffer _async)
|
2008-11-26 02:55:28 +00:00
|
|
|
|
"Get a difference report using Git between two revisions of FILES."
|
2015-05-18 12:49:13 +00:00
|
|
|
|
(let (process-file-side-effects
|
|
|
|
|
(command "diff-tree"))
|
2016-06-19 19:08:21 +00:00
|
|
|
|
(vc-git--asciify-coding-system)
|
2015-05-18 12:49:13 +00:00
|
|
|
|
(if rev2
|
|
|
|
|
;; Diffing against the empty tree.
|
|
|
|
|
(unless rev1 (setq rev1 "4b825dc642cb6eb9a060e54bf8d69288fbee4904"))
|
|
|
|
|
(setq command "diff-index")
|
|
|
|
|
(unless rev1 (setq rev1 "HEAD")))
|
2014-11-19 02:55:00 +00:00
|
|
|
|
(if vc-git-diff-switches
|
2014-12-01 22:56:41 +00:00
|
|
|
|
(apply #'vc-git-command (or buffer "*vc-diff*")
|
2015-11-22 04:59:50 +00:00
|
|
|
|
1 ; bug#21969
|
2014-12-01 22:56:41 +00:00
|
|
|
|
files
|
2015-05-18 12:49:13 +00:00
|
|
|
|
command
|
2014-11-19 02:55:00 +00:00
|
|
|
|
"--exit-code"
|
|
|
|
|
(append (vc-switches 'git 'diff)
|
|
|
|
|
(list "-p" (or rev1 "HEAD") rev2 "--")))
|
|
|
|
|
(vc-git-command (or buffer "*vc-diff*") 1 files
|
|
|
|
|
"difftool" "--exit-code" "--no-prompt" "-x"
|
|
|
|
|
(concat "diff "
|
|
|
|
|
(mapconcat 'identity
|
|
|
|
|
(vc-switches nil 'diff) " "))
|
2015-05-18 12:49:13 +00:00
|
|
|
|
rev1 rev2 "--"))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2012-04-26 03:18:47 +00:00
|
|
|
|
(defun vc-git-revision-table (_files)
|
2007-10-20 01:09:59 +00:00
|
|
|
|
;; What about `files'?!? --Stef
|
2009-08-25 09:01:38 +00:00
|
|
|
|
(let (process-file-side-effects
|
|
|
|
|
(table (list "HEAD")))
|
2007-07-26 17:26:08 +00:00
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(vc-git-command t nil nil "for-each-ref" "--format=%(refname)")
|
|
|
|
|
(goto-char (point-min))
|
2010-03-10 06:32:43 +00:00
|
|
|
|
(while (re-search-forward "^refs/\\(heads\\|tags\\|remotes\\)/\\(.*\\)$"
|
|
|
|
|
nil t)
|
2007-07-26 17:26:08 +00:00
|
|
|
|
(push (match-string 2) table)))
|
|
|
|
|
table))
|
|
|
|
|
|
2007-10-20 01:09:59 +00:00
|
|
|
|
(defun vc-git-revision-completion-table (files)
|
2012-04-26 03:18:47 +00:00
|
|
|
|
(letrec ((table (lazy-completion-table
|
|
|
|
|
table (lambda () (vc-git-revision-table files)))))
|
2007-07-26 17:26:08 +00:00
|
|
|
|
table))
|
|
|
|
|
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(defun vc-git-annotate-command (file buf &optional rev)
|
2016-06-19 19:08:21 +00:00
|
|
|
|
(vc-git--asciify-coding-system)
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(let ((name (file-relative-name file)))
|
2015-05-16 23:45:51 +00:00
|
|
|
|
(apply #'vc-git-command buf 'async nil "blame" "--date=short"
|
2015-02-26 14:46:12 +00:00
|
|
|
|
(append (vc-switches 'git 'annotate)
|
|
|
|
|
(list rev "--" name)))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2015-05-01 00:06:15 +00:00
|
|
|
|
(declare-function vc-annotate-convert-time "vc-annotate" (&optional time))
|
2008-06-24 02:41:04 +00:00
|
|
|
|
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(defun vc-git-annotate-time ()
|
2015-05-18 12:49:13 +00:00
|
|
|
|
(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)
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(vc-annotate-convert-time
|
2007-11-24 14:35:54 +00:00
|
|
|
|
(apply #'encode-time (mapcar (lambda (match)
|
2015-05-16 23:45:51 +00:00
|
|
|
|
(if (match-beginning match)
|
|
|
|
|
(string-to-number (match-string match))
|
|
|
|
|
0))
|
2007-11-24 14:35:54 +00:00
|
|
|
|
'(6 5 4 3 2 1 7))))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
(defun vc-git-annotate-extract-revision-at-line ()
|
2007-11-24 14:35:54 +00:00
|
|
|
|
(save-excursion
|
2013-11-25 02:28:02 +00:00
|
|
|
|
(beginning-of-line)
|
2015-05-18 12:49:13 +00:00
|
|
|
|
(when (looking-at "\\^?\\([0-9a-f]+\\) \\(\\([^(]+\\) \\)?")
|
2009-10-19 05:04:22 +00:00
|
|
|
|
(let ((revision (match-string-no-properties 1)))
|
|
|
|
|
(if (match-beginning 2)
|
2010-06-21 20:03:30 +00:00
|
|
|
|
(let ((fname (match-string-no-properties 3)))
|
|
|
|
|
;; Remove trailing whitespace from the file name.
|
|
|
|
|
(when (string-match " +\\'" fname)
|
|
|
|
|
(setq fname (substring fname 0 (match-beginning 0))))
|
|
|
|
|
(cons revision
|
|
|
|
|
(expand-file-name fname (vc-git-root default-directory))))
|
2009-10-19 05:04:22 +00:00
|
|
|
|
revision)))))
|
2007-07-22 21:16:34 +00:00
|
|
|
|
|
2008-05-15 17:38:50 +00:00
|
|
|
|
;;; TAG SYSTEM
|
2007-07-25 15:03:05 +00:00
|
|
|
|
|
2008-05-15 17:38:50 +00:00
|
|
|
|
(defun vc-git-create-tag (dir name branchp)
|
2007-07-25 15:03:05 +00:00
|
|
|
|
(let ((default-directory dir))
|
|
|
|
|
(and (vc-git-command nil 0 nil "update-index" "--refresh")
|
|
|
|
|
(if branchp
|
|
|
|
|
(vc-git-command nil 0 nil "checkout" "-b" name)
|
|
|
|
|
(vc-git-command nil 0 nil "tag" name)))))
|
|
|
|
|
|
2012-04-26 03:18:47 +00:00
|
|
|
|
(defun vc-git-retrieve-tag (dir name _update)
|
2007-07-25 15:03:05 +00:00
|
|
|
|
(let ((default-directory dir))
|
2017-02-14 00:24:04 +00:00
|
|
|
|
(vc-git-command nil 0 nil "checkout" name)))
|
2007-07-25 15:03:05 +00:00
|
|
|
|
|
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;; MISCELLANEOUS
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-10-10 19:39:23 +00:00
|
|
|
|
(defun vc-git-previous-revision (file rev)
|
|
|
|
|
"Git-specific version of `vc-previous-revision'."
|
2008-07-05 18:42:07 +00:00
|
|
|
|
(if file
|
2010-06-22 19:25:17 +00:00
|
|
|
|
(let* ((fname (file-relative-name file))
|
2009-03-13 20:04:11 +00:00
|
|
|
|
(prev-rev (with-temp-buffer
|
|
|
|
|
(and
|
2010-06-22 19:25:17 +00:00
|
|
|
|
(vc-git--out-ok "rev-list" "-2" rev "--" fname)
|
2009-03-13 20:04:11 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(bolp)
|
|
|
|
|
(zerop (forward-line -1))
|
|
|
|
|
(not (bobp))
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(point)
|
|
|
|
|
(1- (point-max)))))))
|
|
|
|
|
(or (vc-git-symbolic-commit prev-rev) prev-rev))
|
2014-11-21 10:34:59 +00:00
|
|
|
|
;; We used to use "^" here, but that fails on MS-Windows if git is
|
|
|
|
|
;; invoked via a batch file, in which case cmd.exe strips the "^"
|
|
|
|
|
;; because it is a special character for cmd which process-file
|
|
|
|
|
;; does not (and cannot) quote.
|
|
|
|
|
(vc-git--rev-parse (concat rev "~1"))))
|
2013-05-27 23:11:21 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git--rev-parse (rev)
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(and
|
|
|
|
|
(vc-git--out-ok "rev-parse" rev)
|
|
|
|
|
(buffer-substring-no-properties (point-min) (+ (point-min) 40)))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-10-10 19:39:23 +00:00
|
|
|
|
(defun vc-git-next-revision (file rev)
|
|
|
|
|
"Git-specific version of `vc-next-revision'."
|
2017-04-30 16:25:23 +00:00
|
|
|
|
(let* ((default-directory (vc-git-root file))
|
|
|
|
|
(file (file-relative-name file))
|
2007-11-24 14:35:54 +00:00
|
|
|
|
(current-rev
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(and
|
2007-11-24 15:22:07 +00:00
|
|
|
|
(vc-git--out-ok "rev-list" "-1" rev "--" file)
|
2007-11-24 14:35:54 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(bolp)
|
|
|
|
|
(zerop (forward-line -1))
|
|
|
|
|
(bobp)
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(point)
|
2009-03-13 20:04:11 +00:00
|
|
|
|
(1- (point-max))))))
|
|
|
|
|
(next-rev
|
|
|
|
|
(and current-rev
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(and
|
|
|
|
|
(vc-git--out-ok "rev-list" "HEAD" "--" file)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward current-rev nil t)
|
|
|
|
|
(zerop (forward-line -1))
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(point)
|
|
|
|
|
(progn (forward-line 1) (1- (point)))))))))
|
|
|
|
|
(or (vc-git-symbolic-commit next-rev) next-rev)))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-07-23 20:51:02 +00:00
|
|
|
|
(defun vc-git-delete-file (file)
|
|
|
|
|
(vc-git-command nil 0 file "rm" "-f" "--"))
|
2007-07-23 16:01:25 +00:00
|
|
|
|
|
2007-07-23 20:51:02 +00:00
|
|
|
|
(defun vc-git-rename-file (old new)
|
|
|
|
|
(vc-git-command nil 0 (list old new) "mv" "-f" "--"))
|
2007-07-23 16:01:25 +00:00
|
|
|
|
|
2008-03-26 06:35:55 +00:00
|
|
|
|
(defvar vc-git-extra-menu-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(define-key map [git-grep]
|
|
|
|
|
'(menu-item "Git grep..." vc-git-grep
|
|
|
|
|
:help "Run the `git grep' command"))
|
2018-03-22 19:33:45 +00:00
|
|
|
|
(define-key map [git-ds]
|
|
|
|
|
'(menu-item "Delete Stash..." vc-git-stash-delete
|
|
|
|
|
:help "Delete a stash"))
|
2009-12-08 15:56:57 +00:00
|
|
|
|
(define-key map [git-sn]
|
2011-09-18 20:43:20 +00:00
|
|
|
|
'(menu-item "Stash a Snapshot" vc-git-stash-snapshot
|
2009-12-08 15:56:57 +00:00
|
|
|
|
:help "Stash the current state of the tree and keep the current state"))
|
2009-08-26 07:01:09 +00:00
|
|
|
|
(define-key map [git-st]
|
2009-12-08 15:56:57 +00:00
|
|
|
|
'(menu-item "Create Stash..." vc-git-stash
|
2009-08-26 07:01:09 +00:00
|
|
|
|
:help "Stash away changes"))
|
|
|
|
|
(define-key map [git-ss]
|
|
|
|
|
'(menu-item "Show Stash..." vc-git-stash-show
|
|
|
|
|
:help "Show stash contents"))
|
2008-03-26 06:35:55 +00:00
|
|
|
|
map))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-extra-menu () vc-git-extra-menu-map)
|
|
|
|
|
|
|
|
|
|
(defun vc-git-extra-status-menu () vc-git-extra-menu-map)
|
|
|
|
|
|
2009-09-14 04:38:49 +00:00
|
|
|
|
(defun vc-git-root (file)
|
2012-06-30 13:18:16 +00:00
|
|
|
|
(or (vc-file-getprop file 'git-root)
|
|
|
|
|
(vc-file-setprop file 'git-root (vc-find-root file ".git"))))
|
2009-09-14 04:38:49 +00:00
|
|
|
|
|
Silence the rest of vc compilation
* vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff, vc-resynch-buffer):
Declare.
(vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
* vc/vc-git.el (vc-exec-after, vc-set-async-update, grep-read-regexp)
(grep-read-files, grep-expand-template, vc-dir-refresh): Declare.
(vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
* vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
(vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
* vc/vc-sccs.el (vc-file-tree-walk): Declare.
(vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
(vc-tag-precondition, vc-rename-master): Autoload.
2013-05-28 07:47:11 +00:00
|
|
|
|
;; grep-compute-defaults autoloads grep.
|
|
|
|
|
(declare-function grep-read-regexp "grep" ())
|
|
|
|
|
(declare-function grep-read-files "grep" (regexp))
|
|
|
|
|
(declare-function grep-expand-template "grep"
|
|
|
|
|
(template &optional regexp files dir excl))
|
2018-02-23 19:14:58 +00:00
|
|
|
|
(defvar compilation-environment)
|
Silence the rest of vc compilation
* vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff, vc-resynch-buffer):
Declare.
(vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
* vc/vc-git.el (vc-exec-after, vc-set-async-update, grep-read-regexp)
(grep-read-files, grep-expand-template, vc-dir-refresh): Declare.
(vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
* vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
(vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
* vc/vc-sccs.el (vc-file-tree-walk): Declare.
(vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
(vc-tag-precondition, vc-rename-master): Autoload.
2013-05-28 07:47:11 +00:00
|
|
|
|
|
2008-03-26 06:35:55 +00:00
|
|
|
|
;; Derived from `lgrep'.
|
|
|
|
|
(defun vc-git-grep (regexp &optional files dir)
|
|
|
|
|
"Run git grep, searching for REGEXP in FILES in directory DIR.
|
|
|
|
|
The search is limited to file names matching shell pattern FILES.
|
|
|
|
|
FILES may use abbreviations defined in `grep-files-aliases', e.g.
|
2017-11-17 13:39:02 +00:00
|
|
|
|
entering `ch' is equivalent to `*.[ch]'. As whitespace triggers
|
|
|
|
|
completion when entering a pattern, including it requires
|
|
|
|
|
quoting, e.g. `\\[quoted-insert]<space>'.
|
2008-03-26 06:35:55 +00:00
|
|
|
|
|
|
|
|
|
With \\[universal-argument] prefix, you can edit the constructed shell command line
|
|
|
|
|
before it is executed.
|
|
|
|
|
With two \\[universal-argument] prefixes, directly edit and run `grep-command'.
|
|
|
|
|
|
|
|
|
|
Collect output in a buffer. While git grep runs asynchronously, you
|
|
|
|
|
can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
|
|
|
|
|
in the grep output buffer,
|
|
|
|
|
to go to the lines where grep found matches.
|
|
|
|
|
|
|
|
|
|
This command shares argument histories with \\[rgrep] and \\[grep]."
|
|
|
|
|
(interactive
|
|
|
|
|
(progn
|
|
|
|
|
(grep-compute-defaults)
|
|
|
|
|
(cond
|
|
|
|
|
((equal current-prefix-arg '(16))
|
|
|
|
|
(list (read-from-minibuffer "Run: " "git grep"
|
2018-09-12 22:09:53 +00:00
|
|
|
|
nil nil 'grep-history)))
|
2008-03-26 06:35:55 +00:00
|
|
|
|
(t (let* ((regexp (grep-read-regexp))
|
2017-11-28 17:46:38 +00:00
|
|
|
|
(files
|
|
|
|
|
(mapconcat #'shell-quote-argument
|
|
|
|
|
(split-string (grep-read-files regexp)) " "))
|
2008-03-26 06:35:55 +00:00
|
|
|
|
(dir (read-directory-name "In directory: "
|
|
|
|
|
nil default-directory t)))
|
|
|
|
|
(list regexp files dir))))))
|
|
|
|
|
(require 'grep)
|
|
|
|
|
(when (and (stringp regexp) (> (length regexp) 0))
|
2018-09-12 22:09:53 +00:00
|
|
|
|
(unless (and dir (file-accessible-directory-p dir))
|
|
|
|
|
(setq dir default-directory))
|
2008-03-26 06:35:55 +00:00
|
|
|
|
(let ((command regexp))
|
|
|
|
|
(if (null files)
|
|
|
|
|
(if (string= command "git grep")
|
|
|
|
|
(setq command nil))
|
|
|
|
|
(setq dir (file-name-as-directory (expand-file-name dir)))
|
|
|
|
|
(setq command
|
2018-09-01 21:46:16 +00:00
|
|
|
|
(grep-expand-template vc-git-grep-template
|
2011-09-01 07:29:56 +00:00
|
|
|
|
regexp files))
|
2008-03-26 06:35:55 +00:00
|
|
|
|
(when command
|
|
|
|
|
(if (equal current-prefix-arg '(4))
|
|
|
|
|
(setq command
|
|
|
|
|
(read-from-minibuffer "Confirm: "
|
|
|
|
|
command nil nil 'grep-history))
|
|
|
|
|
(add-to-history 'grep-history command))))
|
|
|
|
|
(when command
|
|
|
|
|
(let ((default-directory dir)
|
2011-09-07 12:17:54 +00:00
|
|
|
|
(compilation-environment (cons "PAGER=" compilation-environment)))
|
2008-03-26 06:35:55 +00:00
|
|
|
|
;; Setting process-setup-function makes exit-message-function work
|
|
|
|
|
;; even when async processes aren't supported.
|
|
|
|
|
(compilation-start command 'grep-mode))
|
|
|
|
|
(if (eq next-error-last-buffer (current-buffer))
|
|
|
|
|
(setq default-directory dir))))))
|
2009-07-23 06:42:50 +00:00
|
|
|
|
|
2018-12-04 00:15:37 +00:00
|
|
|
|
(autoload 'vc-dir-marked-files "vc-dir")
|
|
|
|
|
|
2009-08-26 07:01:09 +00:00
|
|
|
|
(defun vc-git-stash (name)
|
|
|
|
|
"Create a stash."
|
|
|
|
|
(interactive "sStash name: ")
|
|
|
|
|
(let ((root (vc-git-root default-directory)))
|
|
|
|
|
(when root
|
2018-12-04 00:15:37 +00:00
|
|
|
|
(apply #'vc-git--call nil "stash" "push" "-m" name
|
|
|
|
|
(when (derived-mode-p 'vc-dir-mode)
|
|
|
|
|
(vc-dir-marked-files)))
|
2009-08-26 07:01:09 +00:00
|
|
|
|
(vc-resynch-buffer root t t))))
|
|
|
|
|
|
2018-03-21 20:16:18 +00:00
|
|
|
|
(defvar vc-git-stash-read-history nil
|
|
|
|
|
"History for `vc-git-stash-read'.")
|
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-read (prompt)
|
|
|
|
|
"Read a Git stash. PROMPT is a string to prompt with."
|
|
|
|
|
(let ((stash (completing-read
|
|
|
|
|
prompt
|
|
|
|
|
(split-string
|
|
|
|
|
(or (vc-git--run-command-string nil "stash" "list") "") "\n")
|
|
|
|
|
nil :require-match nil 'vc-git-stash-read-history)))
|
|
|
|
|
(if (string-equal stash "")
|
|
|
|
|
(user-error "Not a stash")
|
|
|
|
|
(string-match "^stash@{[[:digit:]]+}" stash)
|
|
|
|
|
(match-string 0 stash))))
|
|
|
|
|
|
2009-08-26 07:01:09 +00:00
|
|
|
|
(defun vc-git-stash-show (name)
|
|
|
|
|
"Show the contents of stash NAME."
|
2018-03-21 20:16:18 +00:00
|
|
|
|
(interactive (list (vc-git-stash-read "Show stash: ")))
|
2009-08-26 07:01:09 +00:00
|
|
|
|
(vc-setup-buffer "*vc-git-stash*")
|
|
|
|
|
(vc-git-command "*vc-git-stash*" 'async nil "stash" "show" "-p" name)
|
|
|
|
|
(set-buffer "*vc-git-stash*")
|
|
|
|
|
(diff-mode)
|
|
|
|
|
(setq buffer-read-only t)
|
|
|
|
|
(pop-to-buffer (current-buffer)))
|
|
|
|
|
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(defun vc-git-stash-apply (name)
|
|
|
|
|
"Apply stash NAME."
|
2018-03-21 20:16:18 +00:00
|
|
|
|
(interactive (list (vc-git-stash-read "Apply stash: ")))
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(vc-git-command "*vc-git-stash*" 0 nil "stash" "apply" "-q" name)
|
|
|
|
|
(vc-resynch-buffer (vc-git-root default-directory) t t))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-pop (name)
|
|
|
|
|
"Pop stash NAME."
|
2018-03-21 20:16:18 +00:00
|
|
|
|
(interactive (list (vc-git-stash-read "Pop stash: ")))
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(vc-git-command "*vc-git-stash*" 0 nil "stash" "pop" "-q" name)
|
|
|
|
|
(vc-resynch-buffer (vc-git-root default-directory) t t))
|
|
|
|
|
|
2018-03-22 19:33:45 +00:00
|
|
|
|
(defun vc-git-stash-delete (name)
|
|
|
|
|
"Delete stash NAME."
|
|
|
|
|
(interactive (list (vc-git-stash-read "Delete stash: ")))
|
|
|
|
|
(vc-git-command "*vc-git-stash*" 0 nil "stash" "drop" "-q" name)
|
|
|
|
|
(vc-resynch-buffer (vc-git-root default-directory) t t))
|
|
|
|
|
|
2009-12-08 15:56:57 +00:00
|
|
|
|
(defun vc-git-stash-snapshot ()
|
|
|
|
|
"Create a stash with the current tree state."
|
|
|
|
|
(interactive)
|
|
|
|
|
(vc-git--call nil "stash" "save"
|
Avoid some double-rounding of Lisp timestamps
Also, simplify some time-related Lisp timestamp code
while we’re in the neighborhood.
* lisp/battery.el (battery-linux-proc-acpi)
(battery-linux-sysfs, battery-upower, battery-bsd-apm):
* lisp/calendar/timeclock.el (timeclock-seconds-to-string)
(timeclock-log, timeclock-last-period)
(timeclock-entry-length, timeclock-entry-list-span)
(timeclock-find-discrep, timeclock-generate-report):
* lisp/cedet/ede/detect.el (ede-detect-qtest):
* lisp/completion.el (cmpl-hours-since-origin):
* lisp/ecomplete.el (ecomplete-decay-1):
* lisp/emacs-lisp/ert.el (ert--results-update-stats-display)
(ert--results-update-stats-display-maybe):
* lisp/emacs-lisp/timer-list.el (list-timers):
* lisp/emacs-lisp/timer.el (timer-until)
(timer-event-handler):
* lisp/erc/erc-backend.el (erc-server-send-ping)
(erc-server-send-queue, erc-handle-parsed-server-response)
(erc-handle-unknown-server-response):
* lisp/erc/erc-track.el (erc-buffer-visible):
* lisp/erc/erc.el (erc-lurker-cleanup, erc-lurker-p)
(erc-cmd-PING, erc-send-current-line):
* lisp/eshell/em-pred.el (eshell-pred-file-time):
* lisp/eshell/em-unix.el (eshell-show-elapsed-time):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event:org-timestamp):
* lisp/gnus/gnus-int.el (gnus-backend-trace):
* lisp/gnus/gnus-sum.el (gnus-user-date):
* lisp/gnus/mail-source.el (mail-source-delete-crash-box):
* lisp/gnus/nnmaildir.el (nnmaildir--scan):
* lisp/ibuf-ext.el (ibuffer-mark-old-buffers):
* lisp/gnus/nnmaildir.el (nnmaildir--scan):
* lisp/mouse.el (mouse--down-1-maybe-follows-link)
(mouse--click-1-maybe-follows-link):
* lisp/mpc.el (mpc--faster-toggle):
* lisp/net/rcirc.el (rcirc-handler-ctcp-KEEPALIVE)
(rcirc-sentinel):
* lisp/net/tramp-cache.el (tramp-get-file-property):
* lisp/net/tramp-sh.el (tramp-sh-handle-file-newer-than-file-p)
(tramp-maybe-open-connection):
* lisp/net/tramp-smb.el (tramp-smb-maybe-open-connection):
* lisp/org/org-clock.el (org-clock-resolve):
(org-resolve-clocks, org-clock-in, org-clock-out, org-clock-sum):
* lisp/org/org-timer.el (org-timer-start)
(org-timer-pause-or-continue, org-timer-seconds):
* lisp/org/org.el (org-evaluate-time-range):
* lisp/org/ox-publish.el (org-publish-cache-ctime-of-src):
* lisp/pixel-scroll.el (pixel-scroll-in-rush-p):
* lisp/play/hanoi.el (hanoi-move-ring):
* lisp/proced.el (proced-format-time):
* lisp/progmodes/cpp.el (cpp-progress-message):
* lisp/progmodes/flymake.el (flymake--handle-report):
* lisp/progmodes/js.el (js--wait-for-matching-output):
* lisp/subr.el (progress-reporter-do-update):
* lisp/term/xterm.el (xterm--read-event-for-query):
* lisp/time.el (display-time-update, emacs-uptime):
* lisp/tooltip.el (tooltip-delay):
* lisp/url/url-cookie.el (url-cookie-parse-file-netscape):
* lisp/url/url-queue.el (url-queue-prune-old-entries):
* lisp/url/url.el (url-retrieve-synchronously):
* lisp/xt-mouse.el (xterm-mouse-event):
Avoid double-rounding of time-related values. Simplify.
* lisp/calendar/icalendar.el (icalendar--decode-isodatetime):
When hoping for the best (unlikely), use a better decoded time.
(icalendar--convert-sexp-to-ical): Avoid unnecessary encode-time.
* lisp/calendar/timeclock.el (timeclock-when-to-leave):
* lisp/cedet/ede/detect.el (ede-detect-qtest):
* lisp/desktop.el (desktop-create-buffer):
* lisp/emacs-lisp/benchmark.el (benchmark-elapse):
* lisp/gnus/gnus-art.el (article-lapsed-string):
* lisp/gnus/gnus-group.el (gnus-group-timestamp-delta):
* lisp/gnus/nnmail.el (nnmail-expired-article-p):
* lisp/gnus/nnmaildir.el (nnmaildir-request-expire-articles):
* lisp/nxml/rng-maint.el (rng-time-function):
* lisp/org/org-clock.el (org-clock-get-clocked-time)
(org-clock-resolve, org-resolve-clocks, org-resolve-clocks-if-idle):
* lisp/org/org-habit.el (org-habit-insert-consistency-graphs):
* lisp/progmodes/vhdl-mode.el (vhdl-update-progress-info)
(vhdl-fix-case-region-1):
Use time-since instead of open-coding most of it.
* lisp/erc/erc-dcc.el (erc-dcc-get-sentinel):
* lisp/erc/erc.el (erc-string-to-emacs-time, erc-time-gt):
Now obsolete. All uses changed.
(erc-time-diff): Accept all Lisp time values.
All uses changed.
* lisp/gnus/gnus-demon.el (gnus-demon-idle-since):
* lisp/gnus/gnus-score.el (gnus-score-headers):
* lisp/gnus/nneething.el (nneething-make-head):
* lisp/gnus/nnheader.el (nnheader-message-maybe):
* lisp/gnus/nnimap.el (nnimap-keepalive):
* lisp/image.el (image-animate-timeout):
* lisp/mail/feedmail.el (feedmail-rfc822-date):
* lisp/net/imap.el (imap-wait-for-tag):
* lisp/net/newst-backend.el (newsticker--image-get):
* lisp/net/rcirc.el (rcirc-handler-317, rcirc-handler-333):
* lisp/obsolete/xesam.el (xesam-refresh-entry):
* lisp/org/org-agenda.el (org-agenda-show-clocking-issues)
(org-agenda-check-clock-gap, org-agenda-to-appt):
* lisp/org/org-capture.el (org-capture-set-target-location):
* lisp/org/org-clock.el (org-clock-resolve-clock)
(org-clocktable-steps):
* lisp/org/org-colview.el (org-columns-edit-value)
(org-columns, org-agenda-columns):
* lisp/org/org-duration.el (org-duration-from-minutes):
* lisp/org/org-element.el (org-element-cache-sync-duration)
(org-element-cache-sync-break)
(org-element--cache-interrupt-p, org-element--cache-sync):
* lisp/org/org-habit.el (org-habit-get-faces)
* lisp/org/org-indent.el (org-indent-add-properties):
* lisp/org/org-table.el (org-table-sum):
* lisp/org/org-timer.el (org-timer-show-remaining-time)
(org-timer-set-timer):
* lisp/org/org.el (org-babel-load-file, org-today)
(org-auto-repeat-maybe, org-2ft, org-time-stamp)
(org-read-date-analyze, org-time-stamp-to-now)
(org-small-year-to-year, org-goto-calendar):
* lisp/org/ox.el (org-export-insert-default-template):
* lisp/ses.el (ses--time-check):
* lisp/type-break.el (type-break-time-warning)
(type-break-statistics, type-break-demo-boring):
* lisp/url/url-cache.el (url-cache-expired)
(url-cache-prune-cache):
* lisp/vc/vc-git.el (vc-git-stash-snapshot):
* lisp/erc/erc-match.el (erc-log-matches-come-back):
Simplify.
2019-02-23 02:32:31 +00:00
|
|
|
|
(format-time-string "Snapshot on %Y-%m-%d at %H:%M"))
|
2009-12-08 15:56:57 +00:00
|
|
|
|
(vc-git-command "*vc-git-stash*" 0 nil "stash" "apply" "-q" "stash@{0}")
|
|
|
|
|
(vc-resynch-buffer (vc-git-root default-directory) t t))
|
|
|
|
|
|
2009-07-23 06:42:50 +00:00
|
|
|
|
(defun vc-git-stash-list ()
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(delete
|
|
|
|
|
""
|
|
|
|
|
(split-string
|
|
|
|
|
(replace-regexp-in-string
|
|
|
|
|
"^stash@" " " (vc-git--run-command-string nil "stash" "list"))
|
|
|
|
|
"\n")))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-get-at-point (point)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char point)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(if (looking-at "^ +\\({[0-9]+}\\):")
|
|
|
|
|
(match-string 1)
|
|
|
|
|
(error "Cannot find stash at point"))))
|
|
|
|
|
|
Silence the rest of vc compilation
* vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff, vc-resynch-buffer):
Declare.
(vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
* vc/vc-git.el (vc-exec-after, vc-set-async-update, grep-read-regexp)
(grep-read-files, grep-expand-template, vc-dir-refresh): Declare.
(vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
* vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
(vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
* vc/vc-sccs.el (vc-file-tree-walk): Declare.
(vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
(vc-tag-precondition, vc-rename-master): Autoload.
2013-05-28 07:47:11 +00:00
|
|
|
|
;; vc-git-stash-delete-at-point must be called from a vc-dir buffer.
|
|
|
|
|
(declare-function vc-dir-refresh "vc-dir" ())
|
|
|
|
|
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(defun vc-git-stash-delete-at-point ()
|
2019-06-17 08:35:05 +00:00
|
|
|
|
"Delete the stash at point."
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((stash (vc-git-stash-get-at-point (point))))
|
2009-12-08 15:56:57 +00:00
|
|
|
|
(when (y-or-n-p (format "Remove stash %s ? " stash))
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(vc-git--run-command-string nil "stash" "drop" (format "stash@%s" stash))
|
|
|
|
|
(vc-dir-refresh))))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-show-at-point ()
|
2019-06-17 08:35:05 +00:00
|
|
|
|
"Show the stash at point."
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(vc-git-stash-show (format "stash@%s" (vc-git-stash-get-at-point (point)))))
|
|
|
|
|
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(defun vc-git-stash-apply-at-point ()
|
2019-06-17 08:35:05 +00:00
|
|
|
|
"Apply the stash at point."
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(interactive)
|
2015-10-20 17:04:47 +00:00
|
|
|
|
(let (vc-dir-buffers) ; Small optimization.
|
|
|
|
|
(vc-git-stash-apply (format "stash@%s" (vc-git-stash-get-at-point (point)))))
|
|
|
|
|
(vc-dir-refresh))
|
2009-12-03 04:08:08 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-pop-at-point ()
|
2019-06-17 08:35:05 +00:00
|
|
|
|
"Pop the stash at point."
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(interactive)
|
2015-10-20 17:04:47 +00:00
|
|
|
|
(let (vc-dir-buffers) ; Likewise.
|
|
|
|
|
(vc-git-stash-pop (format "stash@%s" (vc-git-stash-get-at-point (point)))))
|
|
|
|
|
(vc-dir-refresh))
|
2009-12-03 04:08:08 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-menu (e)
|
|
|
|
|
(interactive "e")
|
|
|
|
|
(vc-dir-at-event e (popup-menu vc-git-stash-menu-map e)))
|
|
|
|
|
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-07-25 15:03:05 +00:00
|
|
|
|
;;; Internal commands
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-07-22 22:03:27 +00:00
|
|
|
|
(defun vc-git-command (buffer okstatus file-or-list &rest flags)
|
2007-07-22 21:16:34 +00:00
|
|
|
|
"A wrapper around `vc-do-command' for use in vc-git.el.
|
2011-03-10 08:26:41 +00:00
|
|
|
|
The difference to vc-do-command is that this function always invokes
|
|
|
|
|
`vc-git-program'."
|
2016-04-02 09:25:15 +00:00
|
|
|
|
(let ((coding-system-for-read
|
2016-04-10 16:04:33 +00:00
|
|
|
|
(or coding-system-for-read vc-git-log-output-coding-system))
|
2016-04-02 09:25:15 +00:00
|
|
|
|
(coding-system-for-write
|
2016-06-21 23:04:33 +00:00
|
|
|
|
(or coding-system-for-write vc-git-commits-coding-system))
|
2018-02-22 11:21:49 +00:00
|
|
|
|
(process-environment
|
|
|
|
|
(append
|
|
|
|
|
`("GIT_DIR"
|
|
|
|
|
;; Avoid repository locking during background operations
|
|
|
|
|
;; (bug#21559).
|
|
|
|
|
,@(when revert-buffer-in-progress-p
|
|
|
|
|
'("GIT_OPTIONAL_LOCKS=0")))
|
|
|
|
|
process-environment)))
|
2014-11-21 10:26:35 +00:00
|
|
|
|
(apply 'vc-do-command (or buffer "*vc*") okstatus vc-git-program
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; https://debbugs.gnu.org/16897
|
2014-11-21 10:26:35 +00:00
|
|
|
|
(unless (and (not (cdr-safe file-or-list))
|
|
|
|
|
(let ((file (or (car-safe file-or-list)
|
|
|
|
|
file-or-list)))
|
|
|
|
|
(and file
|
|
|
|
|
(eq ?/ (aref file (1- (length file))))
|
|
|
|
|
(equal file (vc-git-root file)))))
|
|
|
|
|
file-or-list)
|
|
|
|
|
(cons "--no-pager" flags))))
|
2007-07-22 21:16:34 +00:00
|
|
|
|
|
2008-03-22 17:33:52 +00:00
|
|
|
|
(defun vc-git--empty-db-p ()
|
|
|
|
|
"Check if the git db is empty (no commit done yet)."
|
2009-08-25 09:01:38 +00:00
|
|
|
|
(let (process-file-side-effects)
|
|
|
|
|
(not (eq 0 (vc-git--call nil "rev-parse" "--verify" "HEAD")))))
|
2008-03-22 17:33:52 +00:00
|
|
|
|
|
2007-11-24 15:22:07 +00:00
|
|
|
|
(defun vc-git--call (buffer command &rest args)
|
2008-01-08 20:07:21 +00:00
|
|
|
|
;; We don't need to care the arguments. If there is a file name, it
|
|
|
|
|
;; is always a relative one. This works also for remote
|
2019-03-22 03:55:28 +00:00
|
|
|
|
;; directories. We enable `inhibit-nul-byte-detection', otherwise
|
2012-03-01 09:01:08 +00:00
|
|
|
|
;; Tramp's eol conversion might be confused.
|
2019-03-22 03:55:28 +00:00
|
|
|
|
(let ((inhibit-nul-byte-detection t)
|
2016-04-10 16:04:33 +00:00
|
|
|
|
(coding-system-for-read
|
|
|
|
|
(or coding-system-for-read vc-git-log-output-coding-system))
|
|
|
|
|
(coding-system-for-write
|
|
|
|
|
(or coding-system-for-write vc-git-commits-coding-system))
|
2018-09-29 10:40:15 +00:00
|
|
|
|
(process-environment
|
|
|
|
|
(append
|
|
|
|
|
`("GIT_DIR"
|
|
|
|
|
"PAGER="
|
|
|
|
|
;; Avoid repository locking during background operations
|
|
|
|
|
;; (bug#21559).
|
|
|
|
|
,@(when revert-buffer-in-progress-p
|
|
|
|
|
'("GIT_OPTIONAL_LOCKS=0")))
|
|
|
|
|
process-environment)))
|
2012-03-01 09:01:08 +00:00
|
|
|
|
(apply 'process-file vc-git-program nil buffer nil command args)))
|
2007-11-24 15:22:07 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git--out-ok (command &rest args)
|
|
|
|
|
(zerop (apply 'vc-git--call '(t nil) command args)))
|
|
|
|
|
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(defun vc-git--run-command-string (file &rest args)
|
2009-07-23 06:42:50 +00:00
|
|
|
|
"Run a git command on FILE and return its output as string.
|
|
|
|
|
FILE can be nil."
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(let* ((ok t)
|
|
|
|
|
(str (with-output-to-string
|
|
|
|
|
(with-current-buffer standard-output
|
2007-11-24 15:22:07 +00:00
|
|
|
|
(unless (apply 'vc-git--out-ok
|
2009-07-23 06:42:50 +00:00
|
|
|
|
(if file
|
|
|
|
|
(append args (list (file-relative-name
|
|
|
|
|
file)))
|
|
|
|
|
args))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(setq ok nil))))))
|
|
|
|
|
(and ok str)))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-symbolic-commit (commit)
|
|
|
|
|
"Translate COMMIT string into symbolic form.
|
|
|
|
|
Returns nil if not possible."
|
|
|
|
|
(and commit
|
2009-03-13 20:04:11 +00:00
|
|
|
|
(let ((name (with-temp-buffer
|
|
|
|
|
(and
|
|
|
|
|
(vc-git--out-ok "name-rev" "--name-only" commit)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(= (forward-line 2) 1)
|
|
|
|
|
(bolp)
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(buffer-substring-no-properties (point-min)
|
|
|
|
|
(1- (point-max)))))))
|
2009-03-13 20:04:11 +00:00
|
|
|
|
(and name (not (string= name "undefined")) name))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
|
|
|
|
(provide 'vc-git)
|
2007-07-22 21:16:34 +00:00
|
|
|
|
|
|
|
|
|
;;; vc-git.el ends here
|