Function: git-commit-ack

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

Signature

(git-commit-ack NAME MAIL)

Documentation

Insert a trailer acknowledging that you have looked at the commit.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
(defun git-commit-ack (name mail)
  "Insert a trailer acknowledging that you have looked at the commit."
  (interactive (git-commit-get-ident "Acked-by"))
  (git-commit--insert-ident-trailer "Acked-by" name mail))