Variable: vc-dir-show-outgoing-count
vc-dir-show-outgoing-count is a customizable variable defined in
vc-dir.el.gz.
Value
t
Documentation
Whether to display the number of unpushed revisions in VC-Dir.
For some combinations of VC backends and remotes, determining how many outgoing revisions there are is slow, because the backend must fetch from the remote, and your connection to the remote is slow. Customize this variable to nil to disable calculating the outgoing count and therefore also disable the fetching.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-dir.el.gz
(defcustom vc-dir-show-outgoing-count t
"Whether to display the number of unpushed revisions in VC-Dir.
For some combinations of VC backends and remotes, determining how many
outgoing revisions there are is slow, because the backend must fetch
from the remote, and your connection to the remote is slow. Customize
this variable to nil to disable calculating the outgoing count and
therefore also disable the fetching."
:type 'boolean
:group 'vc
:version "31.1")