Module: Git::Commands::Branch Private
- Defined in:
- lib/git/commands/branch.rb,
lib/git/commands/branch/copy.rb,
lib/git/commands/branch/list.rb,
lib/git/commands/branch/move.rb,
lib/git/commands/branch/create.rb,
lib/git/commands/branch/delete.rb,
lib/git/commands/branch/set_upstream.rb,
lib/git/commands/branch/show_current.rb,
lib/git/commands/branch/unset_upstream.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 managing branches via git branch
This module contains command classes split by branch operation:
- Create — create a new branch
- Delete — delete one or more branches (
--delete/--delete --force) - List — list branches with optional filtering
- Move — rename a branch (
--move/--move --force) - Copy — copy a branch (
--copy/--copy --force) - ShowCurrent — print the current branch name (
--show-current) - SetUpstream — set upstream tracking (
--set-upstream-to) - UnsetUpstream — remove upstream tracking (
--unset-upstream)
Defined Under Namespace
Classes: Copy, Create, Delete, List, Move, SetUpstream, ShowCurrent, UnsetUpstream