Module: Git::Commands::Revert Private

Defined in:
lib/git/commands/revert.rb,
lib/git/commands/revert/quit.rb,
lib/git/commands/revert/skip.rb,
lib/git/commands/revert/abort.rb,
lib/git/commands/revert/start.rb,
lib/git/commands/revert/continue.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Commands for reverting commits via git revert

This module contains command classes for starting a revert and managing in-progress revert sessions:

  • Start — revert one or more commits
  • Continue — resume after resolving conflicts (--continue)
  • Skip — skip the current commit (--skip)
  • Abort — abort the in-progress revert (--abort)
  • Quit — forget the in-progress revert (--quit)

Defined Under Namespace

Classes: Abort, Continue, Quit, Skip, Start