Variable: vc-git-log-switches

vc-git-log-switches is a customizable variable defined in vc-git.el.gz.

Value

nil

Documentation

String or list of strings specifying switches for Git log under VC.

This variable was added, or its default value changed, in Emacs 28.1.

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defcustom vc-git-log-switches nil
  "String or list of strings specifying switches for Git log under VC."
  :type '(choice (const :tag "None" nil)
                 (string :tag "Argument String")
                 (repeat :tag "Argument List" :value ("") string))
  :version "28.1")