Function: magit-sparse-checkout-disable
magit-sparse-checkout-disable is an autoloaded, interactive and
byte-compiled function defined in magit-sparse-checkout.el.
Signature
(magit-sparse-checkout-disable)
Documentation
Convert sparse checkout to full checkout.
Note that disabling the sparse checkout does not clear the
configured directories. Call magit-sparse-checkout-enable to
restore the previous sparse checkout.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sparse-checkout.el
;;;###autoload
(defun magit-sparse-checkout-disable ()
"Convert sparse checkout to full checkout.
Note that disabling the sparse checkout does not clear the
configured directories. Call `magit-sparse-checkout-enable' to
restore the previous sparse checkout."
(interactive)
(magit-run-git-async "sparse-checkout" "disable"))