class Git::Commands::Am::Retry

Implements ‘git am –retry` to retry the most-recently-failed patch

Tries to apply the last conflicting patch again. Generally only useful when retrying with extra options (e.g. ‘–3way`), or in scripts where stdin is not a tty and the implicit retry heuristic does not trigger.

@example Retry the current patch

retry_cmd = Git::Commands::Am::Retry.new(execution_context)
retry_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