Function: magit-bundle-list-heads

magit-bundle-list-heads is an autoloaded, interactive and byte-compiled function defined in magit-bundle.el.

Signature

(magit-bundle-list-heads FILE)

Documentation

List the refs in FILE.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-bundle.el
;;;###autoload
(defun magit-bundle-list-heads (file)
  "List the refs in FILE."
  (interactive (list (magit-bundle--read-file-name "List heads of bundle: ")))
  (magit-process-buffer)
  (magit-git-bundle "list-heads" file))