Function: vc-root-log-incoming
vc-root-log-incoming is an autoloaded, interactive and byte-compiled
function defined in vc.el.gz.
Signature
(vc-root-log-incoming &optional UPSTREAM-LOCATION)
Documentation
Show log of changes that will be received with pull from UPSTREAM-LOCATION.
When unspecified UPSTREAM-LOCATION is the place C-x v + (vc-update) would pull
from. When called interactively with a prefix argument, prompt for
UPSTREAM-LOCATION. In some version control systems UPSTREAM-LOCATION
can be a remote branch name.
Probably introduced at or before Emacs version 31.1.
Key Bindings
Aliases
vc-log-incoming (obsolete since 31.1)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
;;;###autoload
(defun vc-root-log-incoming (&optional upstream-location)
"Show log of changes that will be received with pull from UPSTREAM-LOCATION.
When unspecified UPSTREAM-LOCATION is the place \\[vc-update] would pull
from. When called interactively with a prefix argument, prompt for
UPSTREAM-LOCATION. In some version control systems UPSTREAM-LOCATION
can be a remote branch name."
(interactive (list (vc--maybe-read-upstream-location)))
(vc--with-backend-in-rootdir "VC root-log"
(vc-incoming-outgoing-internal backend upstream-location
"*vc-incoming*"
'(log-incoming short))))