Function: git-commit-co-authored

git-commit-co-authored is an interactive and byte-compiled function defined in git-commit.el.

Signature

(git-commit-co-authored NAME MAIL)

Documentation

Insert a trailer mentioning the person who co-authored the commit.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
(defun git-commit-co-authored (name mail)
  "Insert a trailer mentioning the person who co-authored the commit."
  (interactive (git-commit-read-ident "Co-authored-by"))
  (git-commit--insert-ident-trailer "Co-authored-by" name mail))