Function: magit-rebase-reword-commit

magit-rebase-reword-commit is an autoloaded, interactive and byte-compiled function defined in magit-sequence.el.

Signature

(magit-rebase-reword-commit COMMIT ARGS)

Documentation

Reword 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-reword-commit (commit args)
  "Reword 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 reword its message,"
    (apply-partially #'magit-rebase--perl-editor 'reword)))