Function: magit-subtree-pull

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

Signature

(magit-subtree-pull PREFIX REPOSITORY REF ARGS)

Documentation

Pull REF from REPOSITORY into the PREFIX subtree.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-subtree.el
;;;###autoload
(defun magit-subtree-pull (prefix repository ref args)
  "Pull REF from REPOSITORY into the PREFIX subtree."
  (interactive
    (cons (magit-subtree-prefix 'magit-subtree-import "Pull into subtree")
          (let ((remote (magit-read-remote-or-url "From repository")))
            (list remote
                  (magit-read-refspec "Ref" remote)
                  (magit-subtree-arguments 'magit-subtree-import)))))
  (magit-git-subtree "pull" prefix args repository ref))