Function: magit-git-command
magit-git-command is an autoloaded, interactive and byte-compiled
function defined in magit.el.
Signature
(magit-git-command COMMAND)
Documentation
Execute COMMAND asynchronously; display output.
Interactively, prompt for COMMAND in the minibuffer. "git " is used as initial input, but can be deleted to run another command.
With a prefix argument COMMAND is run in the top-level directory
of the current working tree, otherwise in default-directory.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit.el
;;;###autoload
(defun magit-git-command (command)
"Execute COMMAND asynchronously; display output.
Interactively, prompt for COMMAND in the minibuffer. \"git \" is
used as initial input, but can be deleted to run another command.
With a prefix argument COMMAND is run in the top-level directory
of the current working tree, otherwise in `default-directory'."
(interactive (list (magit-read-shell-command nil "git ")))
(magit--shell-command command))