class Git::Commands::Am::Quit
Implements ‘git am –quit` to abort the in-progress am session
Aborts the in-progress patch application but keeps the current HEAD position (does not restore the branch to its pre-am state).
@example Quit an am session without restoring HEAD
quit_cmd = Git::Commands::Am::Quit.new(execution_context) quit_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