Variable: magit-reverse-atomically

magit-reverse-atomically is a customizable variable defined in magit-apply.el.

Value

nil

Documentation

Whether to reverse changes atomically.

If some changes can be reversed while others cannot, then nothing is reversed if the value of this option is non-nil. But when it is nil, then the changes that can be reversed are reversed and for the other changes diff files are created that contain the rejected reversals.

This variable was added, or its default value changed, in magit version 2.7.0.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-apply.el
(defcustom magit-reverse-atomically nil
  "Whether to reverse changes atomically.

If some changes can be reversed while others cannot, then nothing
is reversed if the value of this option is non-nil.  But when it
is nil, then the changes that can be reversed are reversed and
for the other changes diff files are created that contain the
rejected reversals."
  :package-version '(magit . "2.7.0")
  :group 'magit-commands
  :type 'boolean)