Variable: magit-log-show-signatures-limit

magit-log-show-signatures-limit is a customizable variable defined in magit-log.el.

Value

256

Documentation

Number of commits over which signatures are not verified.

When showing more commits than specified by this option, then the
--show-signature argument, if specified, is silently dropped.
This is necessary because checking the signature of a large number of commits is just too slow.

This variable was added, or its default value changed, in magit version 4.0.0.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
(defcustom magit-log-show-signatures-limit 256
  "Number of commits over which signatures are not verified.
When showing more commits than specified by this option, then the
`--show-signature' argument, if specified, is silently dropped.
This is necessary because checking the signature of a large
number of commits is just too slow."
  :package-version '(magit . "4.0.0")
  :group 'magit-log
  :type 'number)