Function: git-commit-test

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

Signature

(git-commit-test NAME MAIL)

Documentation

Insert a trailer acknowledging that you have tested the commit.

With a prefix argument, prompt for another person who tested.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
(defun git-commit-test (name mail)
  "Insert a trailer acknowledging that you have tested the commit.
With a prefix argument, prompt for another person who tested."
  (interactive (git-commit-get-ident "Tested-by"))
  (git-commit--insert-ident-trailer "Tested-by" name mail))