Function: git-commit-signoff

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

Signature

(git-commit-signoff NAME MAIL)

Documentation

Insert a trailer to sign off the commit.

With a prefix argument, prompt for another person who signed off.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
(defun git-commit-signoff (name mail)
  "Insert a trailer to sign off the commit.
With a prefix argument, prompt for another person who signed off."
  (interactive (git-commit-get-ident "Signed-off-by"))
  (git-commit--insert-ident-trailer "Signed-off-by" name mail))