Function: git-commit-review
git-commit-review is an interactive and byte-compiled function defined
in git-commit.el.
Signature
(git-commit-review NAME MAIL)
Documentation
Insert a trailer acknowledging that you have reviewed the commit.
With a prefix argument, prompt for another person who performed a review.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
(defun git-commit-review (name mail)
"Insert a trailer acknowledging that you have reviewed the commit.
With a prefix argument, prompt for another person who performed a
review."
(interactive (git-commit-get-ident "Reviewed-by"))
(git-commit--insert-ident-trailer "Reviewed-by" name mail))