contrib / emacs / git.elon commit Merge branch 'ew/apply' (a8861ea)
   1;;; git.el --- A user interface for git
   2
   3;; Copyright (C) 2005, 2006 Alexandre Julliard <julliard@winehq.org>
   4
   5;; Version: 1.0
   6
   7;; This program is free software; you can redistribute it and/or
   8;; modify it under the terms of the GNU General Public License as
   9;; published by the Free Software Foundation; either version 2 of
  10;; the License, or (at your option) any later version.
  11;;
  12;; This program is distributed in the hope that it will be
  13;; useful, but WITHOUT ANY WARRANTY; without even the implied
  14;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15;; PURPOSE.  See the GNU General Public License for more details.
  16;;
  17;; You should have received a copy of the GNU General Public
  18;; License along with this program; if not, write to the Free
  19;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20;; MA 02111-1307 USA
  21
  22;;; Commentary:
  23
  24;; This file contains an interface for the git version control
  25;; system. It provides easy access to the most frequently used git
  26;; commands. The user interface is as far as possible identical to
  27;; that of the PCL-CVS mode.
  28;;
  29;; To install: put this file on the load-path and place the following
  30;; in your .emacs file:
  31;;
  32;;    (require 'git)
  33;;
  34;; To start: `M-x git-status'
  35;;
  36;; TODO
  37;;  - portability to XEmacs
  38;;  - better handling of subprocess errors
  39;;  - hook into file save (after-save-hook)
  40;;  - diff against other branch
  41;;  - renaming files from the status buffer
  42;;  - creating tags
  43;;  - fetch/pull
  44;;  - switching branches
  45;;  - revlist browser
  46;;  - git-show-branch browser
  47;;  - menus
  48;;
  49
  50(eval-when-compile (require 'cl))
  51(require 'ewoc)
  52
  53
  54;;;; Customizations
  55;;;; ------------------------------------------------------------
  56
  57(defgroup git nil
  58  "A user interface for the git versioning system."
  59  :group 'tools)
  60
  61(defcustom git-committer-name nil
  62  "User name to use for commits.
  63The default is to fall back to the repository config,
  64then to `add-log-full-name' and then to `user-full-name'."
  65  :group 'git
  66  :type '(choice (const :tag "Default" nil)
  67                 (string :tag "Name")))
  68
  69(defcustom git-committer-email nil
  70  "Email address to use for commits.
  71The default is to fall back to the git repository config,
  72then to `add-log-mailing-address' and then to `user-mail-address'."
  73  :group 'git
  74  :type '(choice (const :tag "Default" nil)
  75                 (string :tag "Email")))
  76
  77(defcustom git-commits-coding-system 'utf-8
  78  "Default coding system for the log message of git commits."
  79  :group 'git
  80  :type 'coding-system)
  81
  82(defcustom git-append-signed-off-by nil
  83  "Whether to append a Signed-off-by line to the commit message before editing."
  84  :group 'git
  85  :type 'boolean)
  86
  87(defcustom git-reuse-status-buffer t
  88  "Whether `git-status' should try to reuse an existing buffer
  89if there is already one that displays the same directory."
  90  :group 'git
  91  :type 'boolean)
  92
  93(defcustom git-per-dir-ignore-file ".gitignore"
  94  "Name of the per-directory ignore file."
  95  :group 'git
  96  :type 'string)
  97
  98
  99(defface git-status-face
 100  '((((class color) (background light)) (:foreground "purple")))
 101  "Git mode face used to highlight added and modified files."
 102  :group 'git)
 103
 104(defface git-unmerged-face
 105  '((((class color) (background light)) (:foreground "red" :bold t)))
 106  "Git mode face used to highlight unmerged files."
 107  :group 'git)
 108
 109(defface git-unknown-face
 110  '((((class color) (background light)) (:foreground "goldenrod" :bold t)))
 111  "Git mode face used to highlight unknown files."
 112  :group 'git)
 113
 114(defface git-uptodate-face
 115  '((((class color) (background light)) (:foreground "grey60")))
 116  "Git mode face used to highlight up-to-date files."
 117  :group 'git)
 118
 119(defface git-ignored-face
 120  '((((class color) (background light)) (:foreground "grey60")))
 121  "Git mode face used to highlight ignored files."
 122  :group 'git)
 123
 124(defface git-mark-face
 125  '((((class color) (background light)) (:foreground "red" :bold t)))
 126  "Git mode face used for the file marks."
 127  :group 'git)
 128
 129(defface git-header-face
 130  '((((class color) (background light)) (:foreground "blue")))
 131  "Git mode face used for commit headers."
 132  :group 'git)
 133
 134(defface git-separator-face
 135  '((((class color) (background light)) (:foreground "brown")))
 136  "Git mode face used for commit separator."
 137  :group 'git)
 138
 139(defface git-permission-face
 140  '((((class color) (background light)) (:foreground "green" :bold t)))
 141  "Git mode face used for permission changes."
 142  :group 'git)
 143
 144
 145;;;; Utilities
 146;;;; ------------------------------------------------------------
 147
 148(defconst git-log-msg-separator "--- log message follows this line ---")
 149
 150(defun git-get-env-strings (env)
 151  "Build a list of NAME=VALUE strings from a list of environment strings."
 152  (mapcar (lambda (entry) (concat (car entry) "=" (cdr entry))) env))
 153
 154(defun git-call-process-env (buffer env &rest args)
 155  "Wrapper for call-process that sets environment strings."
 156  (if env
 157      (apply #'call-process "env" nil buffer nil
 158             (append (git-get-env-strings env) (list "git") args))
 159    (apply #'call-process "git" nil buffer nil args)))
 160
 161(defun git-call-process-env-string (env &rest args)
 162  "Wrapper for call-process that sets environment strings,
 163and returns the process output as a string."
 164  (with-temp-buffer
 165    (and (eq 0 (apply #' git-call-process-env t env args))
 166         (buffer-string))))
 167
 168(defun git-run-process-region (buffer start end program args)
 169  "Run a git process with a buffer region as input."
 170  (let ((output-buffer (current-buffer))
 171        (dir default-directory))
 172    (with-current-buffer buffer
 173      (cd dir)
 174      (apply #'call-process-region start end program
 175             nil (list output-buffer nil) nil args))))
 176
 177(defun git-run-command-buffer (buffer-name &rest args)
 178  "Run a git command, sending the output to a buffer named BUFFER-NAME."
 179  (let ((dir default-directory)
 180        (buffer (get-buffer-create buffer-name)))
 181    (message "Running git %s..." (car args))
 182    (with-current-buffer buffer
 183      (let ((default-directory dir)
 184            (buffer-read-only nil))
 185        (erase-buffer)
 186        (apply #'git-call-process-env buffer nil args)))
 187    (message "Running git %s...done" (car args))
 188    buffer))
 189
 190(defun git-run-command (buffer env &rest args)
 191  (message "Running git %s..." (car args))
 192  (apply #'git-call-process-env buffer env args)
 193  (message "Running git %s...done" (car args)))
 194
 195(defun git-run-command-region (buffer start end env &rest args)
 196  "Run a git command with specified buffer region as input."
 197  (message "Running git %s..." (car args))
 198  (unless (eq 0 (if env
 199                    (git-run-process-region
 200                     buffer start end "env"
 201                     (append (git-get-env-strings env) (list "git") args))
 202                  (git-run-process-region
 203                   buffer start end "git" args)))
 204    (error "Failed to run \"git %s\":\n%s" (mapconcat (lambda (x) x) args " ") (buffer-string)))
 205  (message "Running git %s...done" (car args)))
 206
 207(defun git-get-string-sha1 (string)
 208  "Read a SHA1 from the specified string."
 209  (and string
 210       (string-match "[0-9a-f]\\{40\\}" string)
 211       (match-string 0 string)))
 212
 213(defun git-get-committer-name ()
 214  "Return the name to use as GIT_COMMITTER_NAME."
 215  ; copied from log-edit
 216  (or git-committer-name
 217      (git-repo-config "user.name")
 218      (and (boundp 'add-log-full-name) add-log-full-name)
 219      (and (fboundp 'user-full-name) (user-full-name))
 220      (and (boundp 'user-full-name) user-full-name)))
 221
 222(defun git-get-committer-email ()
 223  "Return the email address to use as GIT_COMMITTER_EMAIL."
 224  ; copied from log-edit
 225  (or git-committer-email
 226      (git-repo-config "user.email")
 227      (and (boundp 'add-log-mailing-address) add-log-mailing-address)
 228      (and (fboundp 'user-mail-address) (user-mail-address))
 229      (and (boundp 'user-mail-address) user-mail-address)))
 230
 231(defun git-escape-file-name (name)
 232  "Escape a file name if necessary."
 233  (if (string-match "[\n\t\"\\]" name)
 234      (concat "\""
 235              (mapconcat (lambda (c)
 236                   (case c
 237                     (?\n "\\n")
 238                     (?\t "\\t")
 239                     (?\\ "\\\\")
 240                     (?\" "\\\"")
 241                     (t (char-to-string c))))
 242                 name "")
 243              "\"")
 244    name))
 245
 246(defun git-get-top-dir (dir)
 247  "Retrieve the top-level directory of a git tree."
 248  (let ((cdup (with-output-to-string
 249                (with-current-buffer standard-output
 250                  (cd dir)
 251                  (unless (eq 0 (call-process "git" nil t nil "rev-parse" "--show-cdup"))
 252                    (error "cannot find top-level git tree for %s." dir))))))
 253    (expand-file-name (concat (file-name-as-directory dir)
 254                              (car (split-string cdup "\n"))))))
 255
 256;stolen from pcl-cvs
 257(defun git-append-to-ignore (file)
 258  "Add a file name to the ignore file in its directory."
 259  (let* ((fullname (expand-file-name file))
 260         (dir (file-name-directory fullname))
 261         (name (file-name-nondirectory fullname))
 262         (ignore-name (expand-file-name git-per-dir-ignore-file dir))
 263         (created (not (file-exists-p ignore-name))))
 264  (save-window-excursion
 265    (set-buffer (find-file-noselect ignore-name))
 266    (goto-char (point-max))
 267    (unless (zerop (current-column)) (insert "\n"))
 268    (insert "/" name "\n")
 269    (sort-lines nil (point-min) (point-max))
 270    (save-buffer))
 271  (when created
 272    (git-run-command nil nil "update-index" "--info-only" "--add" "--" (file-relative-name ignore-name)))
 273  (git-add-status-file (if created 'added 'modified) (file-relative-name ignore-name))))
 274
 275
 276;;;; Wrappers for basic git commands
 277;;;; ------------------------------------------------------------
 278
 279(defun git-rev-parse (rev)
 280  "Parse a revision name and return its SHA1."
 281  (git-get-string-sha1
 282   (git-call-process-env-string nil "rev-parse" rev)))
 283
 284(defun git-repo-config (key)
 285  "Retrieve the value associated to KEY in the git repository config file."
 286  (let ((str (git-call-process-env-string nil "repo-config" key)))
 287    (and str (car (split-string str "\n")))))
 288
 289(defun git-symbolic-ref (ref)
 290  "Wrapper for the git-symbolic-ref command."
 291  (let ((str (git-call-process-env-string nil "symbolic-ref" ref)))
 292    (and str (car (split-string str "\n")))))
 293
 294(defun git-update-ref (ref val &optional oldval)
 295  "Update a reference by calling git-update-ref."
 296  (apply #'git-call-process-env nil nil "update-ref" ref val (if oldval (list oldval))))
 297
 298(defun git-read-tree (tree &optional index-file)
 299  "Read a tree into the index file."
 300  (apply #'git-call-process-env nil
 301         (if index-file `(("GIT_INDEX_FILE" . ,index-file)) nil)
 302         "read-tree" (if tree (list tree))))
 303
 304(defun git-write-tree (&optional index-file)
 305  "Call git-write-tree and return the resulting tree SHA1 as a string."
 306  (git-get-string-sha1
 307   (git-call-process-env-string (and index-file `(("GIT_INDEX_FILE" . ,index-file))) "write-tree")))
 308
 309(defun git-commit-tree (buffer tree head)
 310  "Call git-commit-tree with buffer as input and return the resulting commit SHA1."
 311  (let ((author-name (git-get-committer-name))
 312        (author-email (git-get-committer-email))
 313        author-date log-start log-end args)
 314    (when head
 315      (push "-p" args)
 316      (push head args))
 317    (with-current-buffer buffer
 318      (goto-char (point-min))
 319      (if
 320          (setq log-start (re-search-forward (concat "^" (regexp-quote git-log-msg-separator) "\n") nil t))
 321          (save-restriction
 322            (narrow-to-region (point-min) log-start)
 323            (goto-char (point-min))
 324            (when (re-search-forward "^Author: +\\(.*?\\) *<\\(.*\\)> *$" nil t)
 325              (setq author-name (match-string 1)
 326                    author-email (match-string 2)))
 327            (goto-char (point-min))
 328            (when (re-search-forward "^Date: +\\(.*\\)$" nil t)
 329              (setq author-date (match-string 1)))
 330            (goto-char (point-min))
 331            (while (re-search-forward "^Parent: +\\([0-9a-f]+\\)" nil t)
 332              (unless (string-equal head (match-string 1))
 333                (push "-p" args)
 334                (push (match-string 1) args))))
 335        (setq log-start (point-min)))
 336      (setq log-end (point-max)))
 337    (git-get-string-sha1
 338     (with-output-to-string
 339       (with-current-buffer standard-output
 340         (let ((coding-system-for-write git-commits-coding-system)
 341               (env `(("GIT_AUTHOR_NAME" . ,author-name)
 342                      ("GIT_AUTHOR_EMAIL" . ,author-email)
 343                      ("GIT_COMMITTER_NAME" . ,(git-get-committer-name))
 344                      ("GIT_COMMITTER_EMAIL" . ,(git-get-committer-email)))))
 345           (when author-date (push `("GIT_AUTHOR_DATE" . ,author-date) env))
 346           (apply #'git-run-command-region
 347                  buffer log-start log-end env
 348                  "commit-tree" tree (nreverse args))))))))
 349
 350(defun git-empty-db-p ()
 351  "Check if the git db is empty (no commit done yet)."
 352  (not (eq 0 (call-process "git" nil nil nil "rev-parse" "--verify" "HEAD"))))
 353
 354(defun git-get-merge-heads ()
 355  "Retrieve the merge heads from the MERGE_HEAD file if present."
 356  (let (heads)
 357    (when (file-readable-p ".git/MERGE_HEAD")
 358      (with-temp-buffer
 359        (insert-file-contents ".git/MERGE_HEAD" nil nil nil t)
 360        (goto-char (point-min))
 361        (while (re-search-forward "[0-9a-f]\\{40\\}" nil t)
 362          (push (match-string 0) heads))))
 363    (nreverse heads)))
 364
 365;;;; File info structure
 366;;;; ------------------------------------------------------------
 367
 368; fileinfo structure stolen from pcl-cvs
 369(defstruct (git-fileinfo
 370            (:copier nil)
 371            (:constructor git-create-fileinfo (state name &optional old-perm new-perm rename-state orig-name marked))
 372            (:conc-name git-fileinfo->))
 373  marked              ;; t/nil
 374  state               ;; current state
 375  name                ;; file name
 376  old-perm new-perm   ;; permission flags
 377  rename-state        ;; rename or copy state
 378  orig-name           ;; original name for renames or copies
 379  needs-refresh)      ;; whether file needs to be refreshed
 380
 381(defvar git-status nil)
 382
 383(defun git-clear-status (status)
 384  "Remove everything from the status list."
 385  (ewoc-filter status (lambda (info) nil)))
 386
 387(defun git-set-files-state (files state)
 388  "Set the state of a list of files."
 389  (dolist (info files)
 390    (unless (eq (git-fileinfo->state info) state)
 391      (setf (git-fileinfo->state info) state)
 392      (setf (git-fileinfo->rename-state info) nil)
 393      (setf (git-fileinfo->orig-name info) nil)
 394      (setf (git-fileinfo->needs-refresh info) t))))
 395
 396(defun git-state-code (code)
 397  "Convert from a string to a added/deleted/modified state."
 398  (case (string-to-char code)
 399    (?M 'modified)
 400    (?? 'unknown)
 401    (?A 'added)
 402    (?D 'deleted)
 403    (?U 'unmerged)
 404    (t nil)))
 405
 406(defun git-status-code-as-string (code)
 407  "Format a git status code as string."
 408  (case code
 409    ('modified (propertize "Modified" 'face 'git-status-face))
 410    ('unknown  (propertize "Unknown " 'face 'git-unknown-face))
 411    ('added    (propertize "Added   " 'face 'git-status-face))
 412    ('deleted  (propertize "Deleted " 'face 'git-status-face))
 413    ('unmerged (propertize "Unmerged" 'face 'git-unmerged-face))
 414    ('uptodate (propertize "Uptodate" 'face 'git-uptodate-face))
 415    ('ignored  (propertize "Ignored " 'face 'git-ignored-face))
 416    (t "?       ")))
 417
 418(defun git-rename-as-string (info)
 419  "Return a string describing the copy or rename associated with INFO, or an empty string if none."
 420  (let ((state (git-fileinfo->rename-state info)))
 421    (if state
 422        (propertize
 423         (concat "   ("
 424                 (if (eq state 'copy) "copied from "
 425                   (if (eq (git-fileinfo->state info) 'added) "renamed to "
 426                     "renamed from "))
 427                 (git-escape-file-name (git-fileinfo->orig-name info))
 428                 ")") 'face 'git-status-face)
 429      "")))
 430
 431(defun git-permissions-as-string (old-perm new-perm)
 432  "Format a permission change as string."
 433  (propertize
 434   (if (or (not old-perm)
 435           (not new-perm)
 436           (eq 0 (logand ?\111 (logxor old-perm new-perm))))
 437       "  "
 438     (if (eq 0 (logand ?\111 old-perm)) "+x" "-x"))
 439  'face 'git-permission-face))
 440
 441(defun git-fileinfo-prettyprint (info)
 442  "Pretty-printer for the git-fileinfo structure."
 443  (insert (format "   %s %s %s  %s%s"
 444                  (if (git-fileinfo->marked info) (propertize "*" 'face 'git-mark-face) " ")
 445                  (git-status-code-as-string (git-fileinfo->state info))
 446                  (git-permissions-as-string (git-fileinfo->old-perm info) (git-fileinfo->new-perm info))
 447                  (git-escape-file-name (git-fileinfo->name info))
 448                  (git-rename-as-string info))))
 449
 450(defun git-parse-status (status)
 451  "Parse the output of git-diff-index in the current buffer."
 452  (goto-char (point-min))
 453  (while (re-search-forward
 454          ":\\([0-7]\\{6\\}\\) \\([0-7]\\{6\\}\\) [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} \\(\\([ADMU]\\)\0\\([^\0]+\\)\\|\\([CR]\\)[0-9]*\0\\([^\0]+\\)\0\\([^\0]+\\)\\)\0"
 455          nil t 1)
 456    (let ((old-perm (string-to-number (match-string 1) 8))
 457          (new-perm (string-to-number (match-string 2) 8))
 458          (state (or (match-string 4) (match-string 6)))
 459          (name (or (match-string 5) (match-string 7)))
 460          (new-name (match-string 8)))
 461      (if new-name  ; copy or rename
 462          (if (eq ?C (string-to-char state))
 463              (ewoc-enter-last status (git-create-fileinfo 'added new-name old-perm new-perm 'copy name))
 464            (ewoc-enter-last status (git-create-fileinfo 'deleted name 0 0 'rename new-name))
 465            (ewoc-enter-last status (git-create-fileinfo 'added new-name old-perm new-perm 'rename name)))
 466        (ewoc-enter-last status (git-create-fileinfo (git-state-code state) name old-perm new-perm))))))
 467
 468(defun git-find-status-file (status file)
 469  "Find a given file in the status ewoc and return its node."
 470  (let ((node (ewoc-nth status 0)))
 471    (while (and node (not (string= file (git-fileinfo->name (ewoc-data node)))))
 472      (setq node (ewoc-next status node)))
 473    node))
 474
 475(defun git-parse-ls-files (status default-state &optional skip-existing)
 476  "Parse the output of git-ls-files in the current buffer."
 477  (goto-char (point-min))
 478  (let (infolist)
 479    (while (re-search-forward "\\([HMRCK?]\\) \\([^\0]*\\)\0" nil t 1)
 480      (let ((state (match-string 1))
 481            (name (match-string 2)))
 482        (unless (and skip-existing (git-find-status-file status name))
 483          (push (git-create-fileinfo (or (git-state-code state) default-state) name) infolist))))
 484    (dolist (info (nreverse infolist))
 485      (ewoc-enter-last status info))))
 486
 487(defun git-parse-ls-unmerged (status)
 488  "Parse the output of git-ls-files -u in the current buffer."
 489  (goto-char (point-min))
 490  (let (files)
 491    (while (re-search-forward "[0-7]\\{6\\} [0-9a-f]\\{40\\} [123]\t\\([^\0]+\\)\0" nil t)
 492      (let ((node (git-find-status-file status (match-string 1))))
 493        (when node (push (ewoc-data node) files))))
 494    (git-set-files-state files 'unmerged)))
 495
 496(defun git-add-status-file (state name)
 497  "Add a new file to the status list (if not existing already) and return its node."
 498  (unless git-status (error "Not in git-status buffer."))
 499  (or (git-find-status-file git-status name)
 500      (ewoc-enter-last git-status (git-create-fileinfo state name))))
 501
 502(defun git-marked-files ()
 503  "Return a list of all marked files, or if none a list containing just the file at cursor position."
 504  (unless git-status (error "Not in git-status buffer."))
 505  (or (ewoc-collect git-status (lambda (info) (git-fileinfo->marked info)))
 506      (list (ewoc-data (ewoc-locate git-status)))))
 507
 508(defun git-marked-files-state (&rest states)
 509  "Return marked files that are in the specified states."
 510  (let ((files (git-marked-files))
 511        result)
 512    (dolist (info files)
 513      (when (memq (git-fileinfo->state info) states)
 514        (push info result)))
 515    result))
 516
 517(defun git-refresh-files ()
 518  "Refresh all files that need it and clear the needs-refresh flag."
 519  (unless git-status (error "Not in git-status buffer."))
 520  (ewoc-map
 521   (lambda (info)
 522     (let ((refresh (git-fileinfo->needs-refresh info)))
 523       (setf (git-fileinfo->needs-refresh info) nil)
 524       refresh))
 525   git-status)
 526  ; move back to goal column
 527  (when goal-column (move-to-column goal-column)))
 528
 529(defun git-refresh-ewoc-hf (status)
 530  "Refresh the ewoc header and footer."
 531  (let ((branch (git-symbolic-ref "HEAD"))
 532        (head (if (git-empty-db-p) "Nothing committed yet"
 533                (substring (git-rev-parse "HEAD") 0 10)))
 534        (merge-heads (git-get-merge-heads)))
 535    (ewoc-set-hf status
 536                 (format "Directory:  %s\nBranch:     %s\nHead:       %s%s\n"
 537                         default-directory
 538                         (if (string-match "^refs/heads/" branch)
 539                             (substring branch (match-end 0))
 540                           branch)
 541                         head
 542                         (if merge-heads
 543                             (concat "\nMerging:    "
 544                                     (mapconcat (lambda (str) (substring str 0 10)) merge-heads " "))
 545                           ""))
 546                 (if (ewoc-nth status 0) "" "    No changes."))))
 547
 548(defun git-get-filenames (files)
 549  (mapcar (lambda (info) (git-fileinfo->name info)) files))
 550
 551(defun git-update-index (index-file files)
 552  "Run git-update-index on a list of files."
 553  (let ((env (and index-file `(("GIT_INDEX_FILE" . ,index-file))))
 554        added deleted modified)
 555    (dolist (info files)
 556      (case (git-fileinfo->state info)
 557        ('added (push info added))
 558        ('deleted (push info deleted))
 559        ('modified (push info modified))))
 560    (when added
 561      (apply #'git-run-command nil env "update-index" "--add" "--" (git-get-filenames added)))
 562    (when deleted
 563      (apply #'git-run-command nil env "update-index" "--remove" "--" (git-get-filenames deleted)))
 564    (when modified
 565      (apply #'git-run-command nil env "update-index" "--" (git-get-filenames modified)))))
 566
 567(defun git-do-commit ()
 568  "Perform the actual commit using the current buffer as log message."
 569  (interactive)
 570  (let ((buffer (current-buffer))
 571        (index-file (make-temp-file "gitidx")))
 572    (with-current-buffer log-edit-parent-buffer
 573      (if (git-marked-files-state 'unmerged)
 574          (message "You cannot commit unmerged files, resolve them first.")
 575        (unwind-protect
 576            (let ((files (git-marked-files-state 'added 'deleted 'modified))
 577                  head head-tree)
 578              (unless (git-empty-db-p)
 579                (setq head (git-rev-parse "HEAD")
 580                      head-tree (git-rev-parse "HEAD^{tree}")))
 581              (if files
 582                  (progn
 583                    (git-read-tree head-tree index-file)
 584                    (git-update-index nil files)         ;update both the default index
 585                    (git-update-index index-file files)  ;and the temporary one
 586                    (let ((tree (git-write-tree index-file)))
 587                      (if (or (not (string-equal tree head-tree))
 588                              (yes-or-no-p "The tree was not modified, do you really want to perform an empty commit? "))
 589                          (let ((commit (git-commit-tree buffer tree head)))
 590                            (git-update-ref "HEAD" commit head)
 591                            (condition-case nil (delete-file ".git/MERGE_HEAD") (error nil))
 592                            (with-current-buffer buffer (erase-buffer))
 593                            (git-set-files-state files 'uptodate)
 594                            (when (file-directory-p ".git/rr-cache")
 595                              (git-run-command nil nil "rerere"))
 596                            (git-refresh-files)
 597                            (git-refresh-ewoc-hf git-status)
 598                            (message "Committed %s." commit))
 599                        (message "Commit aborted."))))
 600                (message "No files to commit.")))
 601          (delete-file index-file))))))
 602
 603
 604;;;; Interactive functions
 605;;;; ------------------------------------------------------------
 606
 607(defun git-mark-file ()
 608  "Mark the file that the cursor is on and move to the next one."
 609  (interactive)
 610  (unless git-status (error "Not in git-status buffer."))
 611  (let* ((pos (ewoc-locate git-status))
 612         (info (ewoc-data pos)))
 613    (setf (git-fileinfo->marked info) t)
 614    (ewoc-invalidate git-status pos)
 615    (ewoc-goto-next git-status 1)))
 616
 617(defun git-unmark-file ()
 618  "Unmark the file that the cursor is on and move to the next one."
 619  (interactive)
 620  (unless git-status (error "Not in git-status buffer."))
 621  (let* ((pos (ewoc-locate git-status))
 622         (info (ewoc-data pos)))
 623    (setf (git-fileinfo->marked info) nil)
 624    (ewoc-invalidate git-status pos)
 625    (ewoc-goto-next git-status 1)))
 626
 627(defun git-unmark-file-up ()
 628  "Unmark the file that the cursor is on and move to the previous one."
 629  (interactive)
 630  (unless git-status (error "Not in git-status buffer."))
 631  (let* ((pos (ewoc-locate git-status))
 632         (info (ewoc-data pos)))
 633    (setf (git-fileinfo->marked info) nil)
 634    (ewoc-invalidate git-status pos)
 635    (ewoc-goto-prev git-status 1)))
 636
 637(defun git-mark-all ()
 638  "Mark all files."
 639  (interactive)
 640  (unless git-status (error "Not in git-status buffer."))
 641  (ewoc-map (lambda (info) (setf (git-fileinfo->marked info) t) t) git-status)
 642  ; move back to goal column after invalidate
 643  (when goal-column (move-to-column goal-column)))
 644
 645(defun git-unmark-all ()
 646  "Unmark all files."
 647  (interactive)
 648  (unless git-status (error "Not in git-status buffer."))
 649  (ewoc-map (lambda (info) (setf (git-fileinfo->marked info) nil) t) git-status)
 650  ; move back to goal column after invalidate
 651  (when goal-column (move-to-column goal-column)))
 652
 653(defun git-toggle-all-marks ()
 654  "Toggle all file marks."
 655  (interactive)
 656  (unless git-status (error "Not in git-status buffer."))
 657  (ewoc-map (lambda (info) (setf (git-fileinfo->marked info) (not (git-fileinfo->marked info))) t) git-status)
 658  ; move back to goal column after invalidate
 659  (when goal-column (move-to-column goal-column)))
 660
 661(defun git-next-file (&optional n)
 662  "Move the selection down N files."
 663  (interactive "p")
 664  (unless git-status (error "Not in git-status buffer."))
 665  (ewoc-goto-next git-status n))
 666
 667(defun git-prev-file (&optional n)
 668  "Move the selection up N files."
 669  (interactive "p")
 670  (unless git-status (error "Not in git-status buffer."))
 671  (ewoc-goto-prev git-status n))
 672
 673(defun git-add-file ()
 674  "Add marked file(s) to the index cache."
 675  (interactive)
 676  (let ((files (git-marked-files-state 'unknown)))
 677    (unless files
 678      (push (ewoc-data
 679             (git-add-status-file 'added (file-relative-name
 680                                          (read-file-name "File to add: " nil nil t))))
 681            files))
 682    (apply #'git-run-command nil nil "update-index" "--info-only" "--add" "--" (git-get-filenames files))
 683    (git-set-files-state files 'added)
 684    (git-refresh-files)))
 685
 686(defun git-ignore-file ()
 687  "Add marked file(s) to the ignore list."
 688  (interactive)
 689  (let ((files (git-marked-files-state 'unknown)))
 690    (unless files
 691      (push (ewoc-data
 692             (git-add-status-file 'unknown (file-relative-name
 693                                            (read-file-name "File to ignore: " nil nil t))))
 694            files))
 695    (dolist (info files) (git-append-to-ignore (git-fileinfo->name info)))
 696    (git-set-files-state files 'ignored)
 697    (git-refresh-files)))
 698
 699(defun git-remove-file ()
 700  "Remove the marked file(s)."
 701  (interactive)
 702  (let ((files (git-marked-files-state 'added 'modified 'unknown 'uptodate)))
 703    (unless files
 704      (push (ewoc-data
 705             (git-add-status-file 'unknown (file-relative-name
 706                                            (read-file-name "File to remove: " nil nil t))))
 707            files))
 708    (if (yes-or-no-p
 709         (format "Remove %d file%s? " (length files) (if (> (length files) 1) "s" "")))
 710        (progn
 711          (dolist (info files)
 712            (let ((name (git-fileinfo->name info)))
 713              (when (file-exists-p name) (delete-file name))))
 714          (apply #'git-run-command nil nil "update-index" "--info-only" "--remove" "--" (git-get-filenames files))
 715          ; remove unknown files from the list, set the others to deleted
 716          (ewoc-filter git-status
 717                       (lambda (info files)
 718                         (not (and (memq info files) (eq (git-fileinfo->state info) 'unknown))))
 719                       files)
 720          (git-set-files-state files 'deleted)
 721          (git-refresh-files)
 722          (unless (ewoc-nth git-status 0)  ; refresh header if list is empty
 723            (git-refresh-ewoc-hf git-status)))
 724      (message "Aborting"))))
 725
 726(defun git-revert-file ()
 727  "Revert changes to the marked file(s)."
 728  (interactive)
 729  (let ((files (git-marked-files))
 730        added modified)
 731    (when (and files
 732               (yes-or-no-p
 733                (format "Revert %d file%s? " (length files) (if (> (length files) 1) "s" ""))))
 734      (dolist (info files)
 735        (case (git-fileinfo->state info)
 736          ('added (push info added))
 737          ('deleted (push info modified))
 738          ('unmerged (push info modified))
 739          ('modified (push info modified))))
 740      (when added
 741          (apply #'git-run-command nil nil "update-index" "--force-remove" "--" (git-get-filenames added))
 742          (git-set-files-state added 'unknown))
 743      (when modified
 744          (apply #'git-run-command nil nil "checkout" "HEAD" (git-get-filenames modified))
 745          (git-set-files-state modified 'uptodate))
 746      (git-refresh-files))))
 747
 748(defun git-resolve-file ()
 749  "Resolve conflicts in marked file(s)."
 750  (interactive)
 751  (let ((files (git-marked-files-state 'unmerged)))
 752    (when files
 753      (apply #'git-run-command nil nil "update-index" "--info-only" "--" (git-get-filenames files))
 754      (git-set-files-state files 'modified)
 755      (git-refresh-files))))
 756
 757(defun git-remove-handled ()
 758  "Remove handled files from the status list."
 759  (interactive)
 760  (ewoc-filter git-status
 761               (lambda (info)
 762                 (not (or (eq (git-fileinfo->state info) 'ignored)
 763                          (eq (git-fileinfo->state info) 'uptodate)))))
 764  (unless (ewoc-nth git-status 0)  ; refresh header if list is empty
 765    (git-refresh-ewoc-hf git-status)))
 766
 767(defun git-setup-diff-buffer (buffer)
 768  "Setup a buffer for displaying a diff."
 769  (with-current-buffer buffer
 770    (diff-mode)
 771    (goto-char (point-min))
 772    (setq buffer-read-only t))
 773  (display-buffer buffer)
 774  (shrink-window-if-larger-than-buffer))
 775
 776(defun git-diff-file ()
 777  "Diff the marked file(s) against HEAD."
 778  (interactive)
 779  (let ((files (git-marked-files)))
 780    (git-setup-diff-buffer
 781     (apply #'git-run-command-buffer "*git-diff*" "diff-index" "-p" "-M" "HEAD" "--" (git-get-filenames files)))))
 782
 783(defun git-diff-file-merge-head (arg)
 784  "Diff the marked file(s) against the first merge head (or the nth one with a numeric prefix)."
 785  (interactive "p")
 786  (let ((files (git-marked-files))
 787        (merge-heads (git-get-merge-heads)))
 788    (unless merge-heads (error "No merge in progress"))
 789    (git-setup-diff-buffer
 790     (apply #'git-run-command-buffer "*git-diff*" "diff-index" "-p" "-M"
 791            (or (nth (1- arg) merge-heads) "HEAD") "--" (git-get-filenames files)))))
 792
 793(defun git-diff-unmerged-file (stage)
 794  "Diff the marked unmerged file(s) against the specified stage."
 795  (let ((files (git-marked-files)))
 796    (git-setup-diff-buffer
 797     (apply #'git-run-command-buffer "*git-diff*" "diff-files" "-p" stage "--" (git-get-filenames files)))))
 798
 799(defun git-diff-file-base ()
 800  "Diff the marked unmerged file(s) against the common base file."
 801  (interactive)
 802  (git-diff-unmerged-file "-1"))
 803
 804(defun git-diff-file-mine ()
 805  "Diff the marked unmerged file(s) against my pre-merge version."
 806  (interactive)
 807  (git-diff-unmerged-file "-2"))
 808
 809(defun git-diff-file-other ()
 810  "Diff the marked unmerged file(s) against the other's pre-merge version."
 811  (interactive)
 812  (git-diff-unmerged-file "-3"))
 813
 814(defun git-diff-file-combined ()
 815  "Do a combined diff of the marked unmerged file(s)."
 816  (interactive)
 817  (git-diff-unmerged-file "-c"))
 818
 819(defun git-diff-file-idiff ()
 820  "Perform an interactive diff on the current file."
 821  (interactive)
 822  (error "Interactive diffs not implemented yet."))
 823
 824(defun git-log-file ()
 825  "Display a log of changes to the marked file(s)."
 826  (interactive)
 827  (let* ((files (git-marked-files))
 828         (coding-system-for-read git-commits-coding-system)
 829         (buffer (apply #'git-run-command-buffer "*git-log*" "rev-list" "--pretty" "HEAD" "--" (git-get-filenames files))))
 830    (with-current-buffer buffer
 831      ; (git-log-mode)  FIXME: implement log mode
 832      (goto-char (point-min))
 833      (setq buffer-read-only t))
 834    (display-buffer buffer)))
 835
 836(defun git-log-edit-files ()
 837  "Return a list of marked files for use in the log-edit buffer."
 838  (with-current-buffer log-edit-parent-buffer
 839    (git-get-filenames (git-marked-files-state 'added 'deleted 'modified))))
 840
 841(defun git-commit-file ()
 842  "Commit the marked file(s), asking for a commit message."
 843  (interactive)
 844  (unless git-status (error "Not in git-status buffer."))
 845  (let ((buffer (get-buffer-create "*git-commit*"))
 846        (merge-heads (git-get-merge-heads))
 847        (dir default-directory)
 848        (sign-off git-append-signed-off-by))
 849    (with-current-buffer buffer
 850      (when (eq 0 (buffer-size))
 851        (cd dir)
 852        (erase-buffer)
 853        (insert
 854         (propertize
 855          (format "Author: %s <%s>\n%s"
 856                  (git-get-committer-name) (git-get-committer-email)
 857                  (if merge-heads
 858                      (format "Parent: %s\n%s\n"
 859                              (git-rev-parse "HEAD")
 860                              (mapconcat (lambda (str) (concat "Parent: " str)) merge-heads "\n"))
 861                    ""))
 862          'face 'git-header-face)
 863         (propertize git-log-msg-separator 'face 'git-separator-face)
 864         "\n")
 865        (cond ((and merge-heads (file-readable-p ".git/MERGE_MSG"))
 866               (insert-file-contents ".git/MERGE_MSG"))
 867              (sign-off
 868               (insert (format "\n\nSigned-off-by: %s <%s>\n"
 869                               (git-get-committer-name) (git-get-committer-email)))))))
 870    (let ((log-edit-font-lock-keywords
 871           `(("^\\(Author:\\|Date:\\|Parent:\\|Signed-off-by:\\)\\(.*\\)"
 872              (1 font-lock-keyword-face)
 873              (2 font-lock-function-name-face))
 874             (,(concat "^\\(" (regexp-quote git-log-msg-separator) "\\)$")
 875              (1 font-lock-comment-face)))))
 876      (log-edit #'git-do-commit nil #'git-log-edit-files buffer))))
 877
 878(defun git-find-file ()
 879  "Visit the current file in its own buffer."
 880  (interactive)
 881  (unless git-status (error "Not in git-status buffer."))
 882  (let ((info (ewoc-data (ewoc-locate git-status))))
 883    (find-file (git-fileinfo->name info))
 884    (when (eq 'unmerged (git-fileinfo->state info))
 885      (smerge-mode))))
 886
 887(defun git-find-file-imerge ()
 888  "Visit the current file in interactive merge mode."
 889  (interactive)
 890  (unless git-status (error "Not in git-status buffer."))
 891  (let ((info (ewoc-data (ewoc-locate git-status))))
 892    (find-file (git-fileinfo->name info))
 893    (smerge-ediff)))
 894
 895(defun git-view-file ()
 896  "View the current file in its own buffer."
 897  (interactive)
 898  (unless git-status (error "Not in git-status buffer."))
 899  (let ((info (ewoc-data (ewoc-locate git-status))))
 900    (view-file (git-fileinfo->name info))))
 901
 902(defun git-refresh-status ()
 903  "Refresh the git status buffer."
 904  (interactive)
 905  (let* ((status git-status)
 906         (pos (ewoc-locate status))
 907         (cur-name (and pos (git-fileinfo->name (ewoc-data pos)))))
 908    (unless status (error "Not in git-status buffer."))
 909    (git-clear-status status)
 910    (git-run-command nil nil "update-index" "--info-only" "--refresh")
 911    (if (git-empty-db-p)
 912        ; we need some special handling for an empty db
 913        (with-temp-buffer
 914          (git-run-command t nil "ls-files" "-z" "-t" "-c")
 915          (git-parse-ls-files status 'added))
 916      (with-temp-buffer
 917        (git-run-command t nil "diff-index" "-z" "-M" "HEAD")
 918        (git-parse-status status)))
 919      (with-temp-buffer
 920        (git-run-command t nil "ls-files" "-z" "-u")
 921        (git-parse-ls-unmerged status))
 922      (when (file-readable-p ".git/info/exclude")
 923        (with-temp-buffer
 924          (git-run-command t nil "ls-files" "-z" "-t" "-o"
 925                           "--exclude-from=.git/info/exclude"
 926                           (concat "--exclude-per-directory=" git-per-dir-ignore-file))
 927          (git-parse-ls-files status 'unknown)))
 928    (git-refresh-files)
 929    (git-refresh-ewoc-hf status)
 930    ; move point to the current file name if any
 931    (let ((node (and cur-name (git-find-status-file status cur-name))))
 932      (when node (ewoc-goto-node status node)))))
 933
 934(defun git-status-quit ()
 935  "Quit git-status mode."
 936  (interactive)
 937  (bury-buffer))
 938
 939;;;; Major Mode
 940;;;; ------------------------------------------------------------
 941
 942(defvar git-status-mode-hook nil
 943  "Run after `git-status-mode' is setup.")
 944
 945(defvar git-status-mode-map nil
 946  "Keymap for git major mode.")
 947
 948(defvar git-status nil
 949  "List of all files managed by the git-status mode.")
 950
 951(unless git-status-mode-map
 952  (let ((map (make-keymap))
 953        (diff-map (make-sparse-keymap)))
 954    (suppress-keymap map)
 955    (define-key map "?"   'git-help)
 956    (define-key map "h"   'git-help)
 957    (define-key map " "   'git-next-file)
 958    (define-key map "a"   'git-add-file)
 959    (define-key map "c"   'git-commit-file)
 960    (define-key map "d"    diff-map)
 961    (define-key map "="   'git-diff-file)
 962    (define-key map "f"   'git-find-file)
 963    (define-key map "\r"  'git-find-file)
 964    (define-key map "g"   'git-refresh-status)
 965    (define-key map "i"   'git-ignore-file)
 966    (define-key map "l"   'git-log-file)
 967    (define-key map "m"   'git-mark-file)
 968    (define-key map "M"   'git-mark-all)
 969    (define-key map "n"   'git-next-file)
 970    (define-key map "p"   'git-prev-file)
 971    (define-key map "q"   'git-status-quit)
 972    (define-key map "r"   'git-remove-file)
 973    (define-key map "R"   'git-resolve-file)
 974    (define-key map "T"   'git-toggle-all-marks)
 975    (define-key map "u"   'git-unmark-file)
 976    (define-key map "U"   'git-revert-file)
 977    (define-key map "v"   'git-view-file)
 978    (define-key map "x"   'git-remove-handled)
 979    (define-key map "\C-?" 'git-unmark-file-up)
 980    (define-key map "\M-\C-?" 'git-unmark-all)
 981    ; the diff submap
 982    (define-key diff-map "b" 'git-diff-file-base)
 983    (define-key diff-map "c" 'git-diff-file-combined)
 984    (define-key diff-map "=" 'git-diff-file)
 985    (define-key diff-map "e" 'git-diff-file-idiff)
 986    (define-key diff-map "E" 'git-find-file-imerge)
 987    (define-key diff-map "h" 'git-diff-file-merge-head)
 988    (define-key diff-map "m" 'git-diff-file-mine)
 989    (define-key diff-map "o" 'git-diff-file-other)
 990    (setq git-status-mode-map map)))
 991
 992;; git mode should only run in the *git status* buffer
 993(put 'git-status-mode 'mode-class 'special)
 994
 995(defun git-status-mode ()
 996  "Major mode for interacting with Git.
 997Commands:
 998\\{git-status-mode-map}"
 999  (kill-all-local-variables)
1000  (buffer-disable-undo)
1001  (setq mode-name "git status"
1002        major-mode 'git-status-mode
1003        goal-column 17
1004        buffer-read-only t)
1005  (use-local-map git-status-mode-map)
1006  (let ((buffer-read-only nil))
1007    (erase-buffer)
1008  (let ((status (ewoc-create 'git-fileinfo-prettyprint "" "")))
1009    (set (make-local-variable 'git-status) status))
1010  (set (make-local-variable 'list-buffers-directory) default-directory)
1011  (run-hooks 'git-status-mode-hook)))
1012
1013(defun git-find-status-buffer (dir)
1014  "Find the git status buffer handling a specified directory."
1015  (let ((list (buffer-list))
1016        (fulldir (expand-file-name dir))
1017        found)
1018    (while (and list (not found))
1019      (let ((buffer (car list)))
1020        (with-current-buffer buffer
1021          (when (and list-buffers-directory
1022                     (string-equal fulldir (expand-file-name list-buffers-directory))
1023                     (string-match "\\*git-status\\*$" (buffer-name buffer)))
1024            (setq found buffer))))
1025      (setq list (cdr list)))
1026    found))
1027
1028(defun git-status (dir)
1029  "Entry point into git-status mode."
1030  (interactive "DSelect directory: ")
1031  (setq dir (git-get-top-dir dir))
1032  (if (file-directory-p (concat (file-name-as-directory dir) ".git"))
1033      (let ((buffer (or (and git-reuse-status-buffer (git-find-status-buffer dir))
1034                        (create-file-buffer (expand-file-name "*git-status*" dir)))))
1035        (switch-to-buffer buffer)
1036        (cd dir)
1037        (git-status-mode)
1038        (git-refresh-status)
1039        (goto-char (point-min)))
1040    (message "%s is not a git working tree." dir)))
1041
1042(defun git-help ()
1043  "Display help for Git mode."
1044  (interactive)
1045  (describe-function 'git-status-mode))
1046
1047(provide 'git)
1048;;; git.el ends here