Function: magit-clone-mirror

magit-clone-mirror is an autoloaded, interactive and byte-compiled function defined in magit-clone.el.

Signature

(magit-clone-mirror REPOSITORY DIRECTORY ARGS)

Documentation

Create a mirror 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-mirror (repository directory args)
  "Create a mirror of REPOSITORY in DIRECTORY.
Then show the status buffer for the new repository."
  (interactive (magit-clone-read-args))
  (magit-clone-internal repository directory (cons "--mirror" args)))