Function: magit-bundle-verify

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

Signature

(magit-bundle-verify FILE)

Documentation

Check whether FILE is valid and applies to the current repository.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-bundle.el
;;;###autoload
(defun magit-bundle-verify (file)
  "Check whether FILE is valid and applies to the current repository."
  (interactive (list (magit-bundle--read-file-name "Verify bundle: ")))
  (magit-process-buffer)
  (magit-git-bundle "verify" file))