Function: magit-pull-branch

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

Signature

(magit-pull-branch SOURCE ARGS)

Documentation

Pull from a branch read in the minibuffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-pull.el
;;;###autoload
(defun magit-pull-branch (source args)
  "Pull from a branch read in the minibuffer."
  (interactive (list (magit-read-remote-branch "Pull" nil nil nil t)
                     (magit-pull-arguments)))
  (run-hooks 'magit-credential-hook)
  (pcase-let ((`(,remote . ,branch)
               (magit-get-tracked source)))
    (magit-run-git-with-editor "pull" args remote branch)))