class Git::Commands::Am::Abort

Implements ‘git am –abort` to abort an in-progress am session

Aborts the in-progress patch application and restores the branch to the state it was in before the ‘git am` session started.

@example Abort an am session

abort_cmd = Git::Commands::Am::Abort.new(execution_context)
abort_cmd.call

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

@see Git::Commands::Am

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

@api private