Function: magit-rev-parse-false

magit-rev-parse-false is a byte-compiled function defined in magit-git.el.

Signature

(magit-rev-parse-false &rest ARGS)

Documentation

Execute git rev-parse ARGS, returning t if it prints "false".

If it prints "true", then return nil. For any other output signal an error.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defun magit-rev-parse-false (&rest args)
  "Execute `git rev-parse ARGS', returning t if it prints \"false\".
If it prints \"true\", then return nil.  For any other output
signal an error."
  (magit-git-false "rev-parse" args))