Variable: vc-git-diff-switches

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

Value

t

Documentation

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

If nil, use the value of vc-diff-switches. If t, use no switches.

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

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defcustom vc-git-diff-switches t
  "String or list of strings specifying switches for Git diff under VC.
If nil, use the value of `vc-diff-switches'.  If t, use no switches."
  :type '(choice (const :tag "Unspecified" nil)
		 (const :tag "None" t)
		 (string :tag "Argument String")
		 (repeat :tag "Argument List" :value ("") string))
  :version "23.1")