class Git::Commands::Revert::Quit

Implements ‘git revert –quit` to forget an in-progress revert sequence

Clears the sequencer state without restoring the branch, leaving the working tree and index in their current state. If no revert is in progress, this is a no-op and still succeeds.

@example Forget an in-progress revert session

quit_cmd = Git::Commands::Revert::Quit.new(execution_context)
quit_cmd.call

@note ‘arguments` block audited against git-scm.com/docs/git-revert/2.53.0

@see Git::Commands::Revert

@see git-scm.com/docs/git-revert git-revert

@api private