Function: magit-rebase-edit-commit
magit-rebase-edit-commit is an autoloaded, interactive and
byte-compiled function defined in magit-sequence.el.
Signature
(magit-rebase-edit-commit COMMIT ARGS)
Documentation
Edit a single older commit using rebase.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
;;;###autoload
(defun magit-rebase-edit-commit (commit args)
"Edit a single older commit using rebase."
(interactive (list (magit-commit-at-point)
(magit-rebase-arguments)))
(magit-rebase-interactive-1 commit args
"Type %p on a commit to edit it,"
(apply-partially #'magit-rebase--perl-editor 'edit)
t))