Function: magit-fetch-all-prune

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

Signature

(magit-fetch-all-prune)

Documentation

Fetch from all remotes, and prune.

Prune remote tracking branches for branches that have been removed on the respective remote.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-fetch.el
;;;###autoload
(defun magit-fetch-all-prune ()
  "Fetch from all remotes, and prune.
Prune remote tracking branches for branches that have been
removed on the respective remote."
  (interactive)
  (run-hooks 'magit-credential-hook)
  (magit-run-git-async "remote" "update" "--prune"))