Function: magit-fetch-other

magit-fetch-other is an autoloaded, interactive and byte-compiled function defined in magit-fetch.el.

Signature

(magit-fetch-other REMOTE ARGS)

Documentation

Fetch from another repository.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-fetch.el
;;;###autoload
(defun magit-fetch-other (remote args)
  "Fetch from another repository."
  (interactive (list (magit-read-remote "Fetch remote")
                     (magit-fetch-arguments)))
  (magit-git-fetch remote args))