1 ;;; git.el --- A user interface for git
3 ;; Copyright (C) 2005, 2006 Alexandre Julliard <julliard@winehq.org>
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.
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.
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,
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.
29 ;; To install: put this file on the load-path and place the following
30 ;; in your .emacs file:
34 ;; To start: `M-x git-status'
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
44 ;; - switching branches
46 ;; - git-show-branch browser
50 (eval-when-compile (require 'cl
))
55 ;;;; ------------------------------------------------------------
58 "A user interface for the git versioning system."
61 (defcustom git-committer-name nil
62 "User name to use for commits.
63 The default is to fall back to the repository config,
64 then to `add-log-full-name' and then to `user-full-name'."
66 :type
'(choice (const :tag
"Default" nil
)
67 (string :tag
"Name")))
69 (defcustom git-committer-email nil
70 "Email address to use for commits.
71 The default is to fall back to the git repository config,
72 then to `add-log-mailing-address' and then to `user-mail-address'."
74 :type
'(choice (const :tag
"Default" nil
)
75 (string :tag
"Email")))
77 (defcustom git-commits-coding-system
'utf-8
78 "Default coding system for the log message of git commits."
82 (defcustom git-append-signed-off-by nil
83 "Whether to append a Signed-off-by line to the commit message before editing."
87 (defcustom git-reuse-status-buffer t
88 "Whether `git-status' should try to reuse an existing buffer
89 if there is already one that displays the same directory."
93 (defcustom git-per-dir-ignore-file
".gitignore"
94 "Name of the per-directory ignore file."
99 (defface git-status-face
100 '((((class color
) (background light
)) (:foreground
"purple")))
101 "Git mode face used to highlight added and modified files."
104 (defface git-unmerged-face
105 '((((class color
) (background light
)) (:foreground
"red" :bold t
)))
106 "Git mode face used to highlight unmerged files."
109 (defface git-unknown-face
110 '((((class color
) (background light
)) (:foreground
"goldenrod" :bold t
)))
111 "Git mode face used to highlight unknown files."
114 (defface git-uptodate-face
115 '((((class color
) (background light
)) (:foreground
"grey60")))
116 "Git mode face used to highlight up-to-date files."
119 (defface git-ignored-face
120 '((((class color
) (background light
)) (:foreground
"grey60")))
121 "Git mode face used to highlight ignored files."
124 (defface git-mark-face
125 '((((class color
) (background light
)) (:foreground
"red" :bold t
)))
126 "Git mode face used for the file marks."
129 (defface git-header-face
130 '((((class color
) (background light
)) (:foreground
"blue")))
131 "Git mode face used for commit headers."
134 (defface git-separator-face
135 '((((class color
) (background light
)) (:foreground
"brown")))
136 "Git mode face used for commit separator."
139 (defface git-permission-face
140 '((((class color
) (background light
)) (:foreground
"green" :bold t
)))
141 "Git mode face used for permission changes."
146 ;;;; ------------------------------------------------------------
148 (defconst git-log-msg-separator
"--- log message follows this line ---")
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
))
154 (defun git-call-process-env (buffer env
&rest args
)
155 "Wrapper for call-process that sets environment strings."
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
)))
161 (defun git-call-process-env-string (env &rest args
)
162 "Wrapper for call-process that sets environment strings,
163 and returns the process output as a string."
165 (and (eq 0 (apply #' git-call-process-env t env args
))
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
174 (apply #'call-process-region start end program
175 nil
(list output-buffer nil
) nil args
))))
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
))
186 (apply #'git-call-process-env buffer nil args
)))
187 (message "Running git %s...done" (car args
))
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
)))
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
)))
207 (defun git-get-string-sha1 (string)
208 "Read a SHA1 from the specified string."
210 (string-match "[0-9a-f]\\{40\\}" string
)
211 (match-string 0 string
)))
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
)))
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
)))
231 (defun git-escape-file-name (name)
232 "Escape a file name if necessary."
233 (if (string-match "[\n\t\"\\]" name
)
235 (mapconcat (lambda (c)
241 (t (char-to-string c
))))
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
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"))))))
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))
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
))))
276 ;;;; Wrappers for basic git commands
277 ;;;; ------------------------------------------------------------
279 (defun git-rev-parse (rev)
280 "Parse a revision name and return its SHA1."
282 (git-call-process-env-string nil
"rev-parse" rev
)))
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")))))
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")))))
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
))))
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
))))
304 (defun git-write-tree (&optional index-file
)
305 "Call git-write-tree and return the resulting tree SHA1 as a string."
307 (git-call-process-env-string (and index-file
`(("GIT_INDEX_FILE" .
,index-file
))) "write-tree")))
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
)
317 (with-current-buffer buffer
318 (goto-char (point-min))
320 (setq log-start
(re-search-forward (concat "^" (regexp-quote git-log-msg-separator
) "\n") nil t
))
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))
334 (push (match-string 1) args
))))
335 (setq log-start
(point-min)))
336 (setq log-end
(point-max)))
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
))))))))
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"))))
354 (defun git-get-merge-heads ()
355 "Retrieve the merge heads from the MERGE_HEAD file if present."
357 (when (file-readable-p ".git/MERGE_HEAD")
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
))))
365 ;;;; File info structure
366 ;;;; ------------------------------------------------------------
368 ; fileinfo structure stolen from pcl-cvs
369 (defstruct (git-fileinfo
371 (:constructor git-create-fileinfo
(state name
&optional old-perm new-perm rename-state orig-name marked
))
372 (:conc-name git-fileinfo-
>))
374 state
;; current state
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
381 (defvar git-status nil
)
383 (defun git-clear-status (status)
384 "Remove everything from the status list."
385 (ewoc-filter status
(lambda (info) nil
)))
387 (defun git-set-files-state (files state
)
388 "Set the state of a list of 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
))))
396 (defun git-state-code (code)
397 "Convert from a string to a added/deleted/modified state."
398 (case (string-to-char code
)
406 (defun git-status-code-as-string (code)
407 "Format a git status code as string."
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
))
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
)))
424 (if (eq state
'copy
) "copied from "
425 (if (eq (git-fileinfo->state info
) 'added
) "renamed from "
427 (git-escape-file-name (git-fileinfo->orig-name info
))
428 ")") 'face
'git-status-face
)
431 (defun git-permissions-as-string (old-perm new-perm
)
432 "Format a permission change as string."
434 (if (or (not old-perm
)
436 (eq 0 (logand ?
\111 (logxor old-perm new-perm
))))
438 (if (eq 0 (logand ?
\111 old-perm
)) "+x" "-x"))
439 'face
'git-permission-face
))
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
))))
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"
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
))))))
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
)))
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))
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
))))
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))
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
)))
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
))))
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
)))))
508 (defun git-marked-files-state (&rest states
)
509 "Return marked files that are in the specified states."
510 (let ((files (git-marked-files))
513 (when (memq (git-fileinfo->state info
) states
)
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."))
522 (let ((refresh (git-fileinfo->needs-refresh info
)))
523 (setf (git-fileinfo->needs-refresh info
) nil
)
526 ; move back to goal column
527 (when goal-column
(move-to-column goal-column
)))
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)))
536 (format "Directory: %s\nBranch: %s\nHead: %s%s\n"
538 (if (string-match "^refs/heads/" branch
)
539 (substring branch
(match-end 0))
543 (concat "\nMerging: "
544 (mapconcat (lambda (str) (substring str
0 10)) merge-heads
" "))
546 (if (ewoc-nth status
0) "" " No changes."))))
548 (defun git-get-filenames (files)
549 (mapcar (lambda (info) (git-fileinfo->name info
)) files
))
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
)
556 (case (git-fileinfo->state info
)
557 ('added
(push info added
))
558 ('deleted
(push info deleted
))
559 ('modified
(push info modified
))))
561 (apply #'git-run-command nil env
"update-index" "--add" "--" (git-get-filenames added
)))
563 (apply #'git-run-command nil env
"update-index" "--remove" "--" (git-get-filenames deleted
)))
565 (apply #'git-run-command nil env
"update-index" "--" (git-get-filenames modified
)))))
567 (defun git-do-commit ()
568 "Perform the actual commit using the current buffer as log message."
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.")
576 (let ((files (git-marked-files-state 'added
'deleted
'modified
))
578 (unless (git-empty-db-p)
579 (setq head
(git-rev-parse "HEAD")
580 head-tree
(git-rev-parse "HEAD^{tree}")))
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"))
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
))))))
604 ;;;; Interactive functions
605 ;;;; ------------------------------------------------------------
607 (defun git-mark-file ()
608 "Mark the file that the cursor is on and move to the next one."
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)))
617 (defun git-unmark-file ()
618 "Unmark the file that the cursor is on and move to the next one."
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)))
627 (defun git-unmark-file-up ()
628 "Unmark the file that the cursor is on and move to the previous one."
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)))
637 (defun git-mark-all ()
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
)))
645 (defun git-unmark-all ()
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
)))
653 (defun git-toggle-all-marks ()
654 "Toggle all file marks."
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
)))
661 (defun git-next-file (&optional n
)
662 "Move the selection down N files."
664 (unless git-status
(error "Not in git-status buffer."))
665 (ewoc-goto-next git-status n
))
667 (defun git-prev-file (&optional n
)
668 "Move the selection up N files."
670 (unless git-status
(error "Not in git-status buffer."))
671 (ewoc-goto-prev git-status n
))
673 (defun git-add-file ()
674 "Add marked file(s) to the index cache."
676 (let ((files (git-marked-files-state 'unknown
)))
679 (git-add-status-file 'added
(file-relative-name
680 (read-file-name "File to add: " nil nil t
))))
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)))
686 (defun git-ignore-file ()
687 "Add marked file(s) to the ignore list."
689 (let ((files (git-marked-files-state 'unknown
)))
692 (git-add-status-file 'unknown
(file-relative-name
693 (read-file-name "File to ignore: " nil nil t
))))
695 (dolist (info files
) (git-append-to-ignore (git-fileinfo->name info
)))
696 (git-set-files-state files
'ignored
)
697 (git-refresh-files)))
699 (defun git-remove-file ()
700 "Remove the marked file(s)."
702 (let ((files (git-marked-files-state 'added
'modified
'unknown
'uptodate
)))
705 (git-add-status-file 'unknown
(file-relative-name
706 (read-file-name "File to remove: " nil nil t
))))
709 (format "Remove %d file%s? " (length files
) (if (> (length files
) 1) "s" "")))
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
718 (not (and (memq info files
) (eq (git-fileinfo->state info
) 'unknown
))))
720 (git-set-files-state files
'deleted
)
722 (unless (ewoc-nth git-status
0) ; refresh header if list is empty
723 (git-refresh-ewoc-hf git-status
)))
724 (message "Aborting"))))
726 (defun git-revert-file ()
727 "Revert changes to the marked file(s)."
729 (let ((files (git-marked-files))
733 (format "Revert %d file%s? " (length files
) (if (> (length files
) 1) "s" ""))))
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
))))
741 (apply #'git-run-command nil nil
"update-index" "--force-remove" "--" (git-get-filenames added
))
742 (git-set-files-state added
'unknown
))
744 (apply #'git-run-command nil nil
"checkout" "HEAD" (git-get-filenames modified
))
745 (git-set-files-state modified
'uptodate
))
746 (git-refresh-files))))
748 (defun git-resolve-file ()
749 "Resolve conflicts in marked file(s)."
751 (let ((files (git-marked-files-state 'unmerged
)))
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))))
757 (defun git-remove-handled ()
758 "Remove handled files from the status list."
760 (ewoc-filter git-status
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
)))
767 (defun git-setup-diff-buffer (buffer)
768 "Setup a buffer for displaying a diff."
769 (with-current-buffer buffer
771 (goto-char (point-min))
772 (setq buffer-read-only t
))
773 (display-buffer buffer
)
774 (shrink-window-if-larger-than-buffer))
776 (defun git-diff-file ()
777 "Diff the marked file(s) against HEAD."
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
)))))
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)."
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
)))))
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
)))))
799 (defun git-diff-file-base ()
800 "Diff the marked unmerged file(s) against the common base file."
802 (git-diff-unmerged-file "-1"))
804 (defun git-diff-file-mine ()
805 "Diff the marked unmerged file(s) against my pre-merge version."
807 (git-diff-unmerged-file "-2"))
809 (defun git-diff-file-other ()
810 "Diff the marked unmerged file(s) against the other's pre-merge version."
812 (git-diff-unmerged-file "-3"))
814 (defun git-diff-file-combined ()
815 "Do a combined diff of the marked unmerged file(s)."
817 (git-diff-unmerged-file "-c"))
819 (defun git-diff-file-idiff ()
820 "Perform an interactive diff on the current file."
822 (error "Interactive diffs not implemented yet."))
824 (defun git-log-file ()
825 "Display a log of changes to the marked file(s)."
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
)))
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
))))
841 (defun git-commit-file ()
842 "Commit the marked file(s), asking for a commit message."
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))
855 (format "Author: %s <%s>\n%s"
856 (git-get-committer-name) (git-get-committer-email)
858 (format "Parent: %s\n%s\n"
859 (git-rev-parse "HEAD")
860 (mapconcat (lambda (str) (concat "Parent: " str
)) merge-heads
"\n"))
862 'face
'git-header-face
)
863 (propertize git-log-msg-separator
'face
'git-separator-face
)
865 (cond ((and merge-heads
(file-readable-p ".git/MERGE_MSG"))
866 (insert-file-contents ".git/MERGE_MSG"))
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
))))
878 (defun git-find-file ()
879 "Visit the current file in its own buffer."
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
))
887 (defun git-find-file-imerge ()
888 "Visit the current file in interactive merge mode."
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
))
895 (defun git-view-file ()
896 "View the current file in its own buffer."
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
))))
902 (defun git-refresh-status ()
903 "Refresh the git status buffer."
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")
912 ; we need some special handling for an empty db
914 (git-run-command t nil
"ls-files" "-z" "-t" "-c")
915 (git-parse-ls-files status
'added
))
917 (git-run-command t nil
"diff-index" "-z" "-M" "HEAD")
918 (git-parse-status status
)))
920 (git-run-command t nil
"ls-files" "-z" "-u")
921 (git-parse-ls-unmerged status
))
922 (when (file-readable-p ".git/info/exclude")
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
)))
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
)))))
934 (defun git-status-quit ()
935 "Quit git-status mode."
940 ;;;; ------------------------------------------------------------
942 (defvar git-status-mode-hook nil
943 "Run after `git-status-mode' is setup.")
945 (defvar git-status-mode-map nil
946 "Keymap for git major mode.")
948 (defvar git-status nil
949 "List of all files managed by the git-status mode.")
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
)
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
)))
992 ;; git mode should only run in the *git status* buffer
993 (put 'git-status-mode
'mode-class
'special
)
995 (defun git-status-mode ()
996 "Major mode for interacting with Git.
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
1005 (use-local-map git-status-mode-map
)
1006 (let ((buffer-read-only nil
))
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
)))
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
))
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
)))
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
)
1038 (git-refresh-status)
1039 (goto-char (point-min)))
1040 (message "%s is not a git working tree." dir
)))
1043 "Display help for Git mode."
1045 (describe-function 'git-status-mode
))
1048 ;;; git.el ends here