Function: vc-log-incoming

vc-log-incoming is an autoloaded, interactive and byte-compiled function defined in vc.el.gz.

Signature

(vc-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.

View in manual

Probably introduced at or before Emacs version 23.3.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
;;;###autoload
(defun vc-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)))