Git/branch
Jump to navigation
Jump to search
A "branch" is a separate copy (of the files involved in a project) which can be worked on without affecting the original copy.
"Branching" is a concept basic to most version control systems.
Commands
To find out what branches are available:
git branch
lists local branchesgit branch -r
lists the remote branchesgit branch -a
lists both local and remote branches