Function: magit-git-insert

magit-git-insert is a byte-compiled function defined in magit-git.el.

Signature

(magit-git-insert &rest ARGS)

Documentation

Execute Git with ARGS, insert stdout at point and return exit code.

If magit-git-debug is non-nil and the exit code is non-zero, then insert the run command and stderr into the process buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defun magit-git-insert (&rest args)
  "Execute Git with ARGS, insert stdout at point and return exit code.
If `magit-git-debug' is non-nil and the exit code is non-zero, then
insert the run command and stderr into the process buffer."
  (apply #'magit--git-insert nil args))