class Git::Commands::Revert::Skip

Implements ‘git revert –skip` to skip the current commit in a sequence

Skips the current commit and continues applying the remaining commits in the revert sequence.

@example Skip a conflicting commit during a revert sequence

skip_cmd = Git::Commands::Revert::Skip.new(execution_context)
skip_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