Function: vc-git--out-ok

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

Signature

(vc-git--out-ok COMMAND &rest ARGS)

Documentation

Run git COMMAND ARGS... and insert standard output in current buffer.

Return whether the process exited with status zero.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git--out-ok (command &rest args)
  "Run `git COMMAND ARGS...' and insert standard output in current buffer.
Return whether the process exited with status zero."
  (zerop (apply #'vc-git--call nil '(t nil) command args)))