Function: git-commit-next-message
git-commit-next-message is an interactive and byte-compiled function
defined in git-commit.el.
Signature
(git-commit-next-message ARG)
Documentation
Cycle forward through message history, after saving current message.
With a numeric prefix ARG, go forward ARG messages.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
(defun git-commit-next-message (arg)
"Cycle forward through message history, after saving current message.
With a numeric prefix ARG, go forward ARG messages."
(interactive "*p")
(git-commit-prev-message (- arg)))