module Git::Commands::Revert
Commands for reverting commits via ‘git revert`
This module contains command classes for starting a revert and managing in-progress revert sessions:
-
{Revert::Start} — revert one or more commits
-
{Revert::Continue} — resume after resolving conflicts (‘–continue`)
-
{Revert::Skip} — skip the current commit (‘–skip`)
-
{Revert::Abort} — abort the in-progress revert (‘–abort`)
-
{Revert::Quit} — forget the in-progress revert (‘–quit`)
@see git-scm.com/docs/git-revert git-revert documentation
@api private