module Git::Commands::Am
Commands for applying patches from a mailbox via ‘git am`
This module contains command classes for patch application and session management:
-
{Am::Apply} — apply a series of patches from a mailbox
-
{Am::Abort} — abort the current patch application (‘–abort`)
-
{Am::Continue} — resume after resolving conflicts (‘–continue`)
-
{Am::Quit} — drop the current patch session (‘–quit`)
-
{Am::Retry} — retry the current patch
-
{Am::ShowCurrentPatch} — show the patch being applied (‘–show-current-patch`)
-
{Am::Skip} — skip the current patch (‘–skip`)
@see git-scm.com/docs/git-am git-am documentation
@api private