Function: magit-clone-bare
magit-clone-bare is an autoloaded, interactive and byte-compiled
function defined in magit-clone.el.
Signature
(magit-clone-bare REPOSITORY DIRECTORY ARGS)
Documentation
Create a bare clone of REPOSITORY in DIRECTORY.
Then show the status buffer for the new repository.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-clone.el
;;;###autoload
(defun magit-clone-bare (repository directory args)
"Create a bare clone of REPOSITORY in DIRECTORY.
Then show the status buffer for the new repository."
(interactive (magit-clone-read-args))
(magit-clone-internal repository directory (cons "--bare" args)))