Function: vc-git-pull
vc-git-pull is a byte-compiled function defined in vc-git.el.gz.
Signature
(vc-git-pull PROMPT)
Documentation
Pull changes into the current Git branch.
Normally, this runs "git pull". If PROMPT is non-nil, prompt for the Git command to run.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git-pull (prompt)
"Pull changes into the current Git branch.
Normally, this runs \"git pull\". If PROMPT is non-nil, prompt
for the Git command to run."
(vc-git--pushpull "pull" prompt '("--stat")))