Variable: git-commit-redundant-bindings
git-commit-redundant-bindings is a variable defined in git-commit.el.
Value
C-c C-a git-commit-ack
C-c C-o git-commit-cc
C-c C-p git-commit-reported
C-c C-r git-commit-review
C-c C-s git-commit-signoff
C-c C-t git-commit-test
C-c M-i git-commit-suggested
C-c RET git-commit-modified
Documentation
Bindings made redundant by git-commit-insert-trailer.
This keymap is used as the parent of git-commit-mode-map,
to avoid upsetting muscle-memory. If you would rather avoid
the redundant bindings, then set this to nil, before loading
git-commit.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
;;; Keymap
(defvar-keymap git-commit-redundant-bindings
:doc "Bindings made redundant by `git-commit-insert-trailer'.
This keymap is used as the parent of `git-commit-mode-map',
to avoid upsetting muscle-memory. If you would rather avoid
the redundant bindings, then set this to nil, before loading
`git-commit'."
"C-c C-a" #'git-commit-ack
"C-c M-i" #'git-commit-suggested
"C-c C-m" #'git-commit-modified
"C-c C-o" #'git-commit-cc
"C-c C-p" #'git-commit-reported
"C-c C-r" #'git-commit-review
"C-c C-s" #'git-commit-signoff
"C-c C-t" #'git-commit-test)