Variable: git-commit-mode-menu
git-commit-mode-menu is a variable defined in git-commit.el.
Value
Documentation
Git Commit Mode Menu.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
(easy-menu-define git-commit-mode-menu git-commit-mode-map
"Git Commit Mode Menu."
'("Commit"
["Previous" git-commit-prev-message t]
["Next" git-commit-next-message t]
"-"
["Ack" git-commit-ack t
:help "Insert an 'Acked-by' trailer"]
["Modified-by" git-commit-modified t
:help "Insert a 'Modified-by' trailer"]
["Reviewed-by" git-commit-review t
:help "Insert a 'Reviewed-by' trailer"]
["Sign-Off" git-commit-signoff t
:help "Insert a 'Signed-off-by' trailer"]
["Tested-by" git-commit-test t
:help "Insert a 'Tested-by' trailer"]
"-"
["CC" git-commit-cc t
:help "Insert a 'Cc' trailer"]
["Reported" git-commit-reported t
:help "Insert a 'Reported-by' trailer"]
["Suggested" git-commit-suggested t
:help "Insert a 'Suggested-by' trailer"]
["Co-authored-by" git-commit-co-authored t
:help "Insert a 'Co-authored-by' trailer"]
["Co-developed-by" git-commit-co-developed t
:help "Insert a 'Co-developed-by' trailer"]
"-"
["Save" git-commit-save-message t]
["Cancel" with-editor-cancel t]
["Commit" with-editor-finish t]))