Function: vc-git-push

vc-git-push is a byte-compiled function defined in vc-git.el.gz.

Signature

(vc-git-push PROMPT)

Documentation

Push changes from the current Git branch.

Normally, this runs "git push". 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-push (prompt)
  "Push changes from the current Git branch.
Normally, this runs \"git push\".  If PROMPT is non-nil, prompt
for the Git command to run."
  (vc-git--pushpull "push" prompt nil))