Function: magit-subtree-split

magit-subtree-split is an autoloaded, interactive and byte-compiled function defined in magit-subtree.el.

Signature

(magit-subtree-split PREFIX COMMIT ARGS)

Documentation

Extract the history of the subtree PREFIX.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-subtree.el
;;;###autoload
(defun magit-subtree-split (prefix commit args)
  "Extract the history of the subtree PREFIX."
  (interactive (list (magit-subtree-prefix 'magit-subtree-export "Split subtree")
                     (magit-read-string-ns "Commit")
                     (magit-subtree-arguments 'magit-subtree-export)))
  (magit-git-subtree "split" prefix args commit))