Remove magit-log-commit.

This commit is contained in:
Marius Vollmer 2008-08-17 02:55:41 +03:00
parent a88933a1d2
commit d530079be5

View file

@ -839,17 +839,13 @@ pushed.
(or commit
(error "No commit at point.")))))
(defun magit-revert-commit ()
(interactive)
(magit-run "git" "revert" "--no-commit" (magit-commit-at-point)))
(defun magit-apply-commit ()
(interactive)
(magit-run "git" "cherry-pick" "--no-commit" (magit-commit-at-point)))
(defun magit-log-commit ()
(defun magit-revert-commit ()
(interactive)
(magit-browse-log (magit-commit-at-point)))
(magit-run "git" "revert" "--no-commit" (magit-commit-at-point)))
(defun magit-show-commit ()
"Show details of the commit on the current line."