Function: magit-clone-sparse

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

Signature

(magit-clone-sparse REPOSITORY DIRECTORY ARGS)

Documentation

Clone REPOSITORY into DIRECTORY and create a sparse checkout.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-clone.el
;;;###autoload
(defun magit-clone-sparse (repository directory args)
  "Clone REPOSITORY into DIRECTORY and create a sparse checkout."
  (interactive (magit-clone-read-args))
  (magit-clone-internal repository directory (cons "--no-checkout" args)
                        'sparse))