Difference between revisions of "Git/branch"
< Git
Jump to navigation
Jump to search
(Created page with "category:git/concepts I don't yet have a good definition of a "branch".") |
(definition) |
||
Line 1: | Line 1: | ||
[[category:git/concepts]] | [[category:git/concepts]] | ||
− | + | 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 system]]s. | ||
+ | ==Links== | ||
+ | ===Reference=== | ||
+ | * [http://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell 3.1 Git Branching - Branches in a Nutshell] |
Revision as of 17:10, 9 March 2015
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.