module Git::Commands::Branch
Commands for managing branches via ‘git branch`
This module contains command classes split by branch operation:
-
{Branch::Create} — create a new branch
-
{Branch::Delete} — delete one or more branches (‘–delete` / `–delete –force`)
-
{Branch::List} — list branches with optional filtering
-
{Branch::Move} — rename a branch (‘–move` / `–move –force`)
-
{Branch::Copy} — copy a branch (‘–copy` / `–copy –force`)
-
{Branch::ShowCurrent} — print the current branch name (‘–show-current`)
-
{Branch::SetUpstream} — set upstream tracking (‘–set-upstream-to`)
-
{Branch::UnsetUpstream} — remove upstream tracking (‘–unset-upstream`)
@see git-scm.com/docs/git-branch git-branch documentation
@api private