Function: magit-revert-no-commit

magit-revert-no-commit is an autoloaded, interactive and byte-compiled function defined in magit-sequence.el.

Signature

(magit-revert-no-commit COMMIT &optional ARGS)

Documentation

Revert COMMIT by applying it in reverse to the worktree.

Prompt for a commit, defaulting to the commit at point. If the region selects multiple commits, then revert all of them, without prompting.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
;;;###autoload
(defun magit-revert-no-commit (commit &optional args)
  "Revert COMMIT by applying it in reverse to the worktree.
Prompt for a commit, defaulting to the commit at point.  If
the region selects multiple commits, then revert all of them,
without prompting."
  (interactive (magit-revert-read-args "Revert changes"))
  (magit--cherry-pick commit (cons "--no-commit" args) t))