2007-07-22 19:46:04 +00:00
|
|
|
|
;;; vc-git.el --- VC backend for the git version control system
|
|
|
|
|
|
2010-01-13 08:35:10 +00:00
|
|
|
|
;; Copyright (C) 2006, 2007, 2008, 2009, 2010 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>
|
2007-07-22 19:46:04 +00:00
|
|
|
|
;; Keywords: tools
|
|
|
|
|
|
|
|
|
|
;; 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
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://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,
|
|
|
|
|
;; placed in your ~/.emacs, will accomplish this:
|
|
|
|
|
;;
|
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
|
|
|
|
|
;; - state-heuristic (file) NOT NEEDED
|
|
|
|
|
;; * working-revision (file) OK
|
|
|
|
|
;; - latest-on-branch-p (file) NOT NEEDED
|
|
|
|
|
;; * checkout-model (files) OK
|
|
|
|
|
;; - workfile-unchanged-p (file) 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
|
|
|
|
|
;; - init-revision (file) NOT NEEDED
|
|
|
|
|
;; - responsible-p (file) OK
|
|
|
|
|
;; - could-register (file) NOT NEEDED, DEFAULT IS GOOD
|
|
|
|
|
;; - receive-file (file rev) NOT NEEDED
|
|
|
|
|
;; - unregister (file) OK
|
|
|
|
|
;; * checkin (files rev comment) OK
|
|
|
|
|
;; * find-revision (file rev buffer) OK
|
|
|
|
|
;; * checkout (file &optional editable rev) OK
|
|
|
|
|
;; * revert (file &optional contents-done) OK
|
|
|
|
|
;; - rollback (files) COULD BE SUPPORTED
|
2008-05-15 17:38:50 +00:00
|
|
|
|
;; - merge (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.
|
2009-08-26 06:48:58 +00:00
|
|
|
|
;; - merge-news (file) see `merge'
|
|
|
|
|
;; - 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
|
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
|
|
|
|
|
;; * diff (file &optional rev1 rev2 buffer) OK
|
|
|
|
|
;; - 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
|
|
|
|
|
;; - repository-hostname (dirname) NOT NEEDED
|
|
|
|
|
;; - previous-revision (file rev) OK
|
|
|
|
|
;; - next-revision (file rev) OK
|
|
|
|
|
;; - check-headers () COULD BE SUPPORTED
|
|
|
|
|
;; - clear-headers () NOT NEEDED
|
|
|
|
|
;; - delete-file (file) OK
|
|
|
|
|
;; - rename-file (old new) OK
|
|
|
|
|
;; - find-file-hook () NOT NEEDED
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2008-04-23 04:07:11 +00:00
|
|
|
|
(eval-when-compile
|
|
|
|
|
(require 'cl)
|
|
|
|
|
(require 'vc)
|
2008-06-25 05:35:05 +00:00
|
|
|
|
(require 'vc-dir)
|
2008-04-23 04:07:11 +00:00
|
|
|
|
(require 'grep))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
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))
|
2008-11-26 02:55:28 +00:00
|
|
|
|
:version "23.1"
|
|
|
|
|
:group 'vc)
|
|
|
|
|
|
2010-04-21 02:05:24 +00:00
|
|
|
|
(defvar vc-git-commits-coding-system 'utf-8
|
2007-07-22 19:46:04 +00:00
|
|
|
|
"Default coding system for git commits.")
|
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;; BACKEND PROPERTIES
|
|
|
|
|
|
2008-05-02 17:47:25 +00:00
|
|
|
|
(defun vc-git-revision-granularity () 'repository)
|
|
|
|
|
(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
|
|
|
|
|
;;;###autoload (load "vc-git")
|
|
|
|
|
;;;###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."
|
2009-11-30 21:21:35 +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)
|
2010-03-06 04:05:47 +00:00
|
|
|
|
;; If result is empty, use ls-tree to check for deleted
|
|
|
|
|
;; file.
|
2009-11-30 21:21:35 +00:00
|
|
|
|
(when (eq (point-min) (point-max))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(vc-git--out-ok "ls-tree" "--name-only" "-z" "HEAD"
|
|
|
|
|
"--" name))
|
2009-11-30 21:21:35 +00:00
|
|
|
|
(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)
|
|
|
|
|
"Convert from a string to a added/deleted/modified state."
|
|
|
|
|
(case (string-to-char code)
|
|
|
|
|
(?M 'edited)
|
|
|
|
|
(?A 'added)
|
|
|
|
|
(?D 'removed)
|
|
|
|
|
(?U 'edited) ;; FIXME
|
|
|
|
|
(?T 'edited))) ;; FIXME
|
|
|
|
|
|
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'."
|
2010-04-09 14:17:52 +00:00
|
|
|
|
;; FIXME: This can't set 'ignored or 'conflict yet
|
|
|
|
|
;; The 'ignored state could be detected with `git ls-files -i -o
|
|
|
|
|
;; --exclude-standard` It also can't set 'needs-update or
|
|
|
|
|
;; 'needs-merge. The rough 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. But we can't check that without a network
|
|
|
|
|
;; operation.
|
2008-05-01 19:13:16 +00:00
|
|
|
|
(if (not (vc-git-registered file))
|
|
|
|
|
'unregistered
|
|
|
|
|
(vc-git--call nil "add" "--refresh" "--" (file-relative-name file))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(let ((diff (vc-git--run-command-string
|
|
|
|
|
file "diff-index" "-z" "HEAD" "--")))
|
2008-05-01 19:13:16 +00:00
|
|
|
|
(if (and diff (string-match ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} \\([ADMUT]\\)\0[^\0]+\0"
|
|
|
|
|
diff))
|
|
|
|
|
(vc-git--state-code (match-string 1 diff))
|
|
|
|
|
(if (vc-git--empty-db-p) 'added 'up-to-date)))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-10-10 18:52:45 +00:00
|
|
|
|
(defun vc-git-working-revision (file)
|
|
|
|
|
"Git-specific version of `vc-working-revision'."
|
2009-08-25 09:01:38 +00:00
|
|
|
|
(let* (process-file-side-effects
|
|
|
|
|
(str (with-output-to-string
|
|
|
|
|
(with-current-buffer standard-output
|
|
|
|
|
(vc-git--out-ok "symbolic-ref" "HEAD")))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str)
|
|
|
|
|
(match-string 2 str)
|
|
|
|
|
str)))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-workfile-unchanged-p (file)
|
2007-08-27 18:59:41 +00:00
|
|
|
|
(eq 'up-to-date (vc-git-state file)))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-08-25 20:04:26 +00:00
|
|
|
|
(defun vc-git-mode-line-string (file)
|
|
|
|
|
"Return string for placement into the modeline for FILE."
|
2007-10-10 18:52:45 +00:00
|
|
|
|
(let* ((branch (vc-git-working-revision file))
|
2007-08-25 20:04:26 +00:00
|
|
|
|
(def-ml (vc-default-mode-line-string 'Git file))
|
|
|
|
|
(help-echo (get-text-property 0 'help-echo def-ml)))
|
|
|
|
|
(if (zerop (length branch))
|
|
|
|
|
(propertize
|
|
|
|
|
(concat def-ml "!")
|
|
|
|
|
'help-echo (concat help-echo "\nNo current branch (detached HEAD)"))
|
|
|
|
|
(propertize def-ml
|
|
|
|
|
'help-echo (concat help-echo "\nCurrent branch: " branch)))))
|
|
|
|
|
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(defstruct (vc-git-extra-fileinfo
|
|
|
|
|
(: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)
|
|
|
|
|
(case c
|
|
|
|
|
(?\n "\\n")
|
|
|
|
|
(?\t "\\t")
|
|
|
|
|
(?\\ "\\\\")
|
|
|
|
|
(?\" "\\\"")
|
|
|
|
|
(t (char-to-string c))))
|
|
|
|
|
name "")
|
|
|
|
|
"\"")
|
|
|
|
|
name))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-file-type-as-string (old-perm new-perm)
|
|
|
|
|
"Return a string describing the file type based on its permissions."
|
|
|
|
|
(let* ((old-type (lsh (or old-perm 0) -9))
|
|
|
|
|
(new-type (lsh (or new-perm 0) -9))
|
|
|
|
|
(str (case new-type
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(?\100 ;; File.
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(case old-type
|
|
|
|
|
(?\100 nil)
|
|
|
|
|
(?\120 " (type change symlink -> file)")
|
|
|
|
|
(?\160 " (type change subproject -> file)")))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(?\120 ;; Symlink.
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(case old-type
|
|
|
|
|
(?\100 " (type change file -> symlink)")
|
|
|
|
|
(?\160 " (type change subproject -> symlink)")
|
|
|
|
|
(t " (symlink)")))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(?\160 ;; Subproject.
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(case old-type
|
|
|
|
|
(?\100 " (type change file -> subproject)")
|
|
|
|
|
(?\120 " (type change symlink -> subproject)")
|
|
|
|
|
(t " (subproject)")))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(?\110 nil) ;; Directory (internal, not a real git state).
|
|
|
|
|
(?\000 ;; Deleted or unknown.
|
2008-03-30 15:44:34 +00:00
|
|
|
|
(case old-type
|
|
|
|
|
(?\120 " (symlink)")
|
|
|
|
|
(?\160 " (subproject)")))
|
|
|
|
|
(t (format " (unknown type %o)" new-type)))))
|
|
|
|
|
(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))))
|
|
|
|
|
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(defun vc-git-after-dir-status-stage (stage files update-function)
|
|
|
|
|
"Process sentinel for the various dir-status stages."
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(let (next-stage result)
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(case stage
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(update-index
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(setq next-stage (if (vc-git--empty-db-p) 'ls-files-added
|
|
|
|
|
(if files 'ls-files-up-to-date 'diff-index))))
|
2010-03-06 04:05:47 +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)))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(push (list name 'added (vc-git-create-extra-fileinfo 0 new-perm))
|
|
|
|
|
result))))
|
|
|
|
|
(ls-files-up-to-date
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(setq next-stage 'diff-index)
|
|
|
|
|
(while (re-search-forward "\\([0-7]\\{6\\}\\) [0-9a-f]\\{40\\} 0\t\\([^\0]+\\)\0" nil t)
|
|
|
|
|
(let ((perm (string-to-number (match-string 1) 8))
|
|
|
|
|
(name (match-string 2)))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(push (list name 'up-to-date
|
|
|
|
|
(vc-git-create-extra-fileinfo perm perm))
|
|
|
|
|
result))))
|
|
|
|
|
(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)
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(push (list (match-string 1) 'unregistered
|
|
|
|
|
(vc-git-create-extra-fileinfo 0 0))
|
|
|
|
|
result)))
|
|
|
|
|
(ls-files-ignored
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(while (re-search-forward "\\([^\0]*?\\)\0" nil t 1)
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(push (list (match-string 1) 'ignored
|
|
|
|
|
(vc-git-create-extra-fileinfo 0 0))
|
|
|
|
|
result)))
|
|
|
|
|
(diff-index
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(setq next-stage 'ls-files-unknown)
|
|
|
|
|
(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))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(push (list new-name 'added
|
|
|
|
|
(vc-git-create-extra-fileinfo old-perm new-perm
|
|
|
|
|
'copy name))
|
|
|
|
|
result)
|
|
|
|
|
(push (list name 'removed
|
|
|
|
|
(vc-git-create-extra-fileinfo 0 0
|
|
|
|
|
'rename new-name))
|
|
|
|
|
result)
|
|
|
|
|
(push (list new-name 'added
|
|
|
|
|
(vc-git-create-extra-fileinfo old-perm new-perm
|
|
|
|
|
'rename name))
|
|
|
|
|
result))
|
|
|
|
|
(push (list name (vc-git--state-code state)
|
|
|
|
|
(vc-git-create-extra-fileinfo old-perm new-perm))
|
|
|
|
|
result))))))
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(when result
|
|
|
|
|
(setq result (nreverse result))
|
|
|
|
|
(when files
|
|
|
|
|
(dolist (entry result) (setq files (delete (car entry) files)))
|
|
|
|
|
(unless files (setq next-stage nil))))
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(when (or result (not next-stage))
|
|
|
|
|
(funcall update-function result next-stage))
|
|
|
|
|
(when next-stage
|
|
|
|
|
(vc-git-dir-status-goto-stage next-stage files update-function))))
|
2008-04-13 18:07:54 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-dir-status-goto-stage (stage files update-function)
|
2008-03-22 17:33:52 +00:00
|
|
|
|
(erase-buffer)
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(case stage
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(update-index
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(if files
|
|
|
|
|
(vc-git-command (current-buffer) 'async files "add" "--refresh" "--")
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(vc-git-command (current-buffer) 'async nil
|
|
|
|
|
"update-index" "--refresh")))
|
|
|
|
|
(ls-files-added
|
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"ls-files" "-z" "-c" "-s" "--"))
|
|
|
|
|
(ls-files-up-to-date
|
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"ls-files" "-z" "-c" "-s" "--"))
|
|
|
|
|
(ls-files-unknown
|
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"ls-files" "-z" "-o" "--directory"
|
|
|
|
|
"--no-empty-directory" "--exclude-standard" "--"))
|
|
|
|
|
(ls-files-ignored
|
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"ls-files" "-z" "-o" "-i" "--directory"
|
|
|
|
|
"--no-empty-directory" "--exclude-standard" "--"))
|
2010-04-16 02:45:26 +00:00
|
|
|
|
;; --relative added in Git 1.5.5.
|
2010-03-06 04:05:47 +00:00
|
|
|
|
(diff-index
|
|
|
|
|
(vc-git-command (current-buffer) 'async files
|
|
|
|
|
"diff-index" "--relative" "-z" "-M" "HEAD" "--")))
|
2008-03-22 17:33:52 +00:00
|
|
|
|
(vc-exec-after
|
2010-03-06 04:05:47 +00:00
|
|
|
|
`(vc-git-after-dir-status-stage ',stage ',files ',update-function)))
|
2008-03-22 17:33:52 +00:00
|
|
|
|
|
2008-04-11 15:17:59 +00:00
|
|
|
|
(defun vc-git-dir-status (dir 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
|
2008-04-13 18:07:54 +00:00
|
|
|
|
(vc-git-dir-status-goto-stage 'update-index nil update-function))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-dir-status-files (dir files default-state update-function)
|
|
|
|
|
"Return a list of (FILE STATE EXTRA) entries for FILES in DIR."
|
|
|
|
|
(vc-git-dir-status-goto-stage 'update-index files 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))
|
|
|
|
|
|
|
|
|
|
(defvar vc-git-stash-menu-map
|
|
|
|
|
(let ((map (make-sparse-keymap "Git Stash")))
|
|
|
|
|
(define-key map [de]
|
|
|
|
|
'(menu-item "Delete stash" vc-git-stash-delete-at-point
|
|
|
|
|
:help "Delete the current stash"))
|
|
|
|
|
(define-key map [ap]
|
|
|
|
|
'(menu-item "Apply stash" vc-git-stash-apply-at-point
|
|
|
|
|
:help "Apply the current stash and keep it in the stash list"))
|
|
|
|
|
(define-key map [po]
|
|
|
|
|
'(menu-item "Apply and remove stash (pop)" vc-git-stash-pop-at-point
|
|
|
|
|
:help "Apply the current stash and remove it"))
|
|
|
|
|
(define-key map [sh]
|
|
|
|
|
'(menu-item "Show stash" vc-git-stash-show-at-point
|
|
|
|
|
:help "Show the contents of the current stash"))
|
2009-11-05 03:24:08 +00:00
|
|
|
|
map))
|
|
|
|
|
|
2008-10-27 07:21:43 +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"))))
|
2009-09-15 00:11:51 +00:00
|
|
|
|
(stash (vc-git-stash-list))
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(stash-help-echo "Use M-x vc-git-stash to create stashes.")
|
2009-09-15 00:11:51 +00:00
|
|
|
|
branch remote remote-url)
|
|
|
|
|
(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)"))
|
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)))
|
2009-07-23 06:42:50 +00:00
|
|
|
|
"\n"
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(if stash
|
|
|
|
|
(concat
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(propertize "Stash :\n" 'face 'font-lock-type-face
|
|
|
|
|
'help-echo stash-help-echo)
|
2009-09-20 19:51:35 +00:00
|
|
|
|
(mapconcat
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(propertize x
|
|
|
|
|
'face 'font-lock-variable-name-face
|
|
|
|
|
'mouse-face 'highlight
|
2009-12-03 04:08:08 +00:00
|
|
|
|
'help-echo "mouse-3: Show stash menu\nRET: Show stash\nA: Apply stash\nP: Apply and remove stash (pop)\nC-k: Delete stash"
|
2009-09-20 19:51:35 +00:00
|
|
|
|
'keymap vc-git-stash-map))
|
|
|
|
|
stash "\n"))
|
|
|
|
|
(concat
|
2009-12-03 04:08:08 +00:00
|
|
|
|
(propertize "Stash : " 'face 'font-lock-type-face
|
|
|
|
|
'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
|
|
|
|
|
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
|
|
|
|
|
2007-07-22 22:03:27 +00:00
|
|
|
|
(defun vc-git-register (files &optional rev 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
|
|
|
|
|
2010-04-21 02:05:24 +00:00
|
|
|
|
(declare-function log-edit-extract-headers "log-edit" (headers string))
|
2007-07-23 20:56:13 +00:00
|
|
|
|
|
2010-04-21 02:05:24 +00:00
|
|
|
|
(defun vc-git-checkin (files rev comment)
|
|
|
|
|
(let ((coding-system-for-write vc-git-commits-coding-system))
|
2010-04-09 15:35:30 +00:00
|
|
|
|
(apply 'vc-git-command nil 0 files
|
2010-04-21 02:05:24 +00:00
|
|
|
|
(nconc (list "commit" "-m")
|
|
|
|
|
(log-edit-extract-headers '(("Author" . "--author"))
|
|
|
|
|
comment)
|
|
|
|
|
(list "--only" "--")))))
|
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)
|
|
|
|
|
(fullname (substring
|
|
|
|
|
(vc-git--run-command-string
|
|
|
|
|
file "ls-files" "-z" "--full-name" "--")
|
|
|
|
|
0 -1)))
|
2007-07-26 17:26:08 +00:00
|
|
|
|
(vc-git-command
|
|
|
|
|
buffer 0
|
2007-07-23 20:51:02 +00:00
|
|
|
|
(concat (if rev rev "HEAD") ":" fullname) "cat-file" "blob")))
|
2007-07-23 16:01:25 +00:00
|
|
|
|
|
|
|
|
|
(defun vc-git-checkout (file &optional editable 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
|
|
|
|
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;; HISTORY FUNCTIONS
|
|
|
|
|
|
2009-12-07 09:02:11 +00:00
|
|
|
|
(defun vc-git-print-log (files buffer &optional shortlog start-revision limit)
|
2010-04-16 02:39:22 +00:00
|
|
|
|
"Get change log associated with FILES.
|
2010-04-16 02:45:26 +00:00
|
|
|
|
Note that using SHORTLOG requires at least Git version 1.5.6,
|
|
|
|
|
for the --graph option."
|
2010-04-21 02:05:24 +00:00
|
|
|
|
(let ((coding-system-for-read vc-git-commits-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))
|
2008-07-05 18:42:07 +00:00
|
|
|
|
(with-current-buffer
|
|
|
|
|
buffer
|
2009-12-06 22:18:03 +00:00
|
|
|
|
(apply 'vc-git-command buffer
|
|
|
|
|
'async files
|
|
|
|
|
(append
|
2009-12-28 02:43:28 +00:00
|
|
|
|
'("log" "--no-color")
|
2009-12-06 22:18:03 +00:00
|
|
|
|
(when shortlog
|
2010-03-06 04:05:47 +00:00
|
|
|
|
'("--graph" "--decorate" "--date=short"
|
2010-03-09 13:24:44 +00:00
|
|
|
|
"--pretty=tformat:%d%h %ad %s" "--abbrev-commit"))
|
2009-12-06 22:18:03 +00:00
|
|
|
|
(when limit (list "-n" (format "%s" limit)))
|
2009-12-07 09:02:11 +00:00
|
|
|
|
(when start-revision (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)
|
|
|
|
|
(interactive)
|
|
|
|
|
(vc-git-command
|
|
|
|
|
buffer 0 nil
|
|
|
|
|
"log" (if (string= remote-location "")
|
|
|
|
|
;; FIXME: this hardcodes the location, it should compute
|
|
|
|
|
;; it properly.
|
|
|
|
|
"origin/master..HEAD"
|
|
|
|
|
remote-location)))
|
|
|
|
|
|
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)
|
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.
|
2008-07-05 18:42:07 +00:00
|
|
|
|
(set (make-local-variable 'log-view-file-re) "\\`a\\`")
|
|
|
|
|
(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)
|
2010-04-07 05:56:35 +00:00
|
|
|
|
(if (eq vc-log-view-type 'short)
|
2009-12-06 22:18:03 +00:00
|
|
|
|
"^\\(?:[*/\\| ]+ \\)?\\(?: ([^)]+)\\)?\\([0-9a-z]+\\) \\([-a-z0-9]+\\) \\(.*\\)"
|
2009-09-15 17:52:42 +00:00
|
|
|
|
"^commit *\\([0-9a-z]+\\)"))
|
2007-07-22 21:16:34 +00:00
|
|
|
|
(set (make-local-variable 'log-view-font-lock-keywords)
|
2010-04-07 05:56:35 +00:00
|
|
|
|
(if (eq vc-log-view-type 'short)
|
2009-12-06 22:18:03 +00:00
|
|
|
|
'(
|
|
|
|
|
;; Same as log-view-message-re, except that we don't
|
|
|
|
|
;; want the shy group for the tag name.
|
|
|
|
|
("^\\(?:[*/\\| ]+ \\)?\\( ([^)]+)\\)?\\([0-9a-z]+\\) \\([-a-z0-9]+\\) \\(.*\\)"
|
|
|
|
|
(1 'highlight nil lax)
|
|
|
|
|
(2 'change-log-acknowledgement)
|
|
|
|
|
(3 'change-log-date)))
|
2007-07-22 21:16:34 +00:00
|
|
|
|
(append
|
2009-12-06 22:18:03 +00:00
|
|
|
|
`((,log-view-message-re (1 'change-log-acknowledgement)))
|
2007-11-24 14:35:54 +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]+\\)"
|
|
|
|
|
(1 'change-log-acknowledgement)
|
|
|
|
|
(2 'change-log-acknowledgement))
|
|
|
|
|
("^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
|
|
|
|
|
2007-07-25 15:03:05 +00:00
|
|
|
|
(defun vc-git-diff (files &optional rev1 rev2 buffer)
|
2008-11-26 02:55:28 +00:00
|
|
|
|
"Get a difference report using Git between two revisions of FILES."
|
2009-08-25 09:01:38 +00:00
|
|
|
|
(let (process-file-side-effects)
|
|
|
|
|
(apply #'vc-git-command (or buffer "*vc-diff*") 1 files
|
|
|
|
|
(if (and rev1 rev2) "diff-tree" "diff-index")
|
|
|
|
|
"--exit-code"
|
|
|
|
|
(append (vc-switches 'git 'diff)
|
|
|
|
|
(list "-p" (or rev1 "HEAD") rev2 "--")))))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2007-10-20 01:09:59 +00:00
|
|
|
|
(defun vc-git-revision-table (files)
|
|
|
|
|
;; 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)
|
|
|
|
|
(lexical-let ((files files)
|
2007-07-26 17:26:08 +00:00
|
|
|
|
table)
|
|
|
|
|
(setq table (lazy-completion-table
|
2007-10-20 01:09:59 +00:00
|
|
|
|
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)
|
|
|
|
|
(let ((name (file-relative-name file)))
|
2009-10-19 05:04:22 +00:00
|
|
|
|
(vc-git-command buf 'async name "blame" "--date=iso" "-C" "-C" rev)))
|
2007-07-22 19:46:04 +00:00
|
|
|
|
|
2008-06-24 02:41:04 +00:00
|
|
|
|
(declare-function vc-annotate-convert-time "vc-annotate" (time))
|
|
|
|
|
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(defun vc-git-annotate-time ()
|
2007-11-25 00:42:41 +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)
|
|
|
|
|
(string-to-number (match-string match)))
|
|
|
|
|
'(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
|
|
|
|
|
(move-beginning-of-line 1)
|
2009-10-19 05:04:22 +00:00
|
|
|
|
(when (looking-at "\\([0-9a-f^][0-9a-f]+\\) \\(\\([^(]+\\) \\)?")
|
|
|
|
|
(let ((revision (match-string-no-properties 1)))
|
|
|
|
|
(if (match-beginning 2)
|
2010-03-07 14:45:53 +00:00
|
|
|
|
(cons revision (expand-file-name (match-string-no-properties 3)
|
|
|
|
|
(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)))))
|
|
|
|
|
|
2008-05-15 17:38:50 +00:00
|
|
|
|
(defun vc-git-retrieve-tag (dir name update)
|
2007-07-25 15:03:05 +00:00
|
|
|
|
(let ((default-directory dir))
|
|
|
|
|
(vc-git-command nil 0 nil "checkout" name)
|
|
|
|
|
;; FIXME: update buffers if `update' is true
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
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
|
2009-03-13 20:04:11 +00:00
|
|
|
|
(let* ((default-directory (file-name-directory (expand-file-name file)))
|
|
|
|
|
(file (file-name-nondirectory file))
|
|
|
|
|
(prev-rev (with-temp-buffer
|
|
|
|
|
(and
|
|
|
|
|
(vc-git--out-ok "rev-list" "-2" rev "--" file)
|
|
|
|
|
(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))
|
2008-07-05 18:42:07 +00:00
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(and
|
|
|
|
|
(vc-git--out-ok "rev-parse" (concat 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'."
|
2007-07-22 19:46:04 +00:00
|
|
|
|
(let* ((default-directory (file-name-directory
|
|
|
|
|
(expand-file-name file)))
|
2007-11-24 14:35:54 +00:00
|
|
|
|
(file (file-name-nondirectory file))
|
|
|
|
|
(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"))
|
2009-12-08 15:56:57 +00:00
|
|
|
|
(define-key map [git-sn]
|
|
|
|
|
'(menu-item "Stash a snapshot" vc-git-stash-snapshot
|
|
|
|
|
: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)
|
|
|
|
|
(vc-find-root file ".git"))
|
|
|
|
|
|
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.
|
|
|
|
|
entering `ch' is equivalent to `*.[ch]'.
|
|
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
nil nil 'grep-history)
|
|
|
|
|
nil))
|
|
|
|
|
(t (let* ((regexp (grep-read-regexp))
|
|
|
|
|
(files (grep-read-files regexp))
|
|
|
|
|
(dir (read-directory-name "In directory: "
|
|
|
|
|
nil default-directory t)))
|
|
|
|
|
(list regexp files dir))))))
|
|
|
|
|
(require 'grep)
|
|
|
|
|
(when (and (stringp regexp) (> (length regexp) 0))
|
|
|
|
|
(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
|
|
|
|
|
(grep-expand-template "git grep -n -e <R> -- <F>" regexp files))
|
|
|
|
|
(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)
|
|
|
|
|
(compilation-environment '("PAGER=")))
|
|
|
|
|
;; 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
|
|
|
|
|
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
|
|
|
|
|
(vc-git--call nil "stash" "save" name)
|
|
|
|
|
(vc-resynch-buffer root t t))))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-show (name)
|
|
|
|
|
"Show the contents of stash NAME."
|
|
|
|
|
(interactive "sStash name: ")
|
|
|
|
|
(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."
|
|
|
|
|
(interactive "sApply stash: ")
|
|
|
|
|
(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."
|
|
|
|
|
(interactive "sPop stash: ")
|
|
|
|
|
(vc-git-command "*vc-git-stash*" 0 nil "stash" "pop" "-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"
|
|
|
|
|
(let ((ct (current-time)))
|
|
|
|
|
(concat
|
|
|
|
|
(format-time-string "Snapshot on %Y-%m-%d" ct)
|
|
|
|
|
(format-time-string " at %H:%M" ct))))
|
|
|
|
|
(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"))))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-delete-at-point ()
|
|
|
|
|
(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 ()
|
|
|
|
|
(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 ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(vc-git-stash-apply (format "stash@%s" (vc-git-stash-get-at-point (point)))))
|
|
|
|
|
|
|
|
|
|
(defun vc-git-stash-pop-at-point ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(vc-git-stash-pop (format "stash@%s" (vc-git-stash-get-at-point (point)))))
|
|
|
|
|
|
|
|
|
|
(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.
|
|
|
|
|
The difference to vc-do-command is that this function always invokes `git'."
|
2008-05-10 13:27:16 +00:00
|
|
|
|
(apply 'vc-do-command (or buffer "*vc*") okstatus "git" file-or-list 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
|
|
|
|
|
;; directories.
|
|
|
|
|
(apply 'process-file "git" 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
|
|
|
|
|
2007-07-23 08:00:58 +00:00
|
|
|
|
;; arch-tag: bd10664a-0e5b-48f5-a877-6c17b135be12
|
2007-07-22 21:16:34 +00:00
|
|
|
|
;;; vc-git.el ends here
|