Remove magit-log-commit.
This commit is contained in:
parent
a88933a1d2
commit
d530079be5
1 changed files with 2 additions and 6 deletions
8
magit.el
8
magit.el
|
@ -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."
|
||||
|
|
Loading…
Reference in a new issue