class Git::Commands::Revert::Abort

Implements ‘git revert –abort` to cancel an in-progress revert sequence

Cancels the in-progress revert and restores the branch to the state it was in before the ‘git revert` sequence started.

@example Abort an in-progress revert

abort_cmd = Git::Commands::Revert::Abort.new(execution_context)
abort_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