Function: vc-log-outgoing

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

Signature

(vc-log-outgoing &optional REMOTE-LOCATION)

Documentation

Show log of changes that will be sent with a push operation to REMOTE-LOCATION.

When called interactively with a prefix argument, prompt for REMOTE-LOCATION.

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-outgoing (&optional remote-location)
  "Show log of changes that will be sent with a push operation to REMOTE-LOCATION.
When called interactively with a prefix argument, prompt for REMOTE-LOCATION."
  (interactive
   (when current-prefix-arg
     (list (read-string "Remote location (empty for default): "))))
  (let ((backend (vc-deduce-backend)))
    (unless backend
      (error "Buffer is not version controlled"))
    (vc-incoming-outgoing-internal backend (or remote-location "")
                                   "*vc-outgoing*" 'log-outgoing)))