December 2008
Intermediate to advanced
184 pages
4h 47m
English
Branches are one of Git’s strongest points. This section covers commands related to all aspects of branches. You can find more details in Chapter 5, Understanding and Using Branches.
|
prompt> git branch |
|
prompt> git branch -r |
|
prompt> git branch -a |
|
prompt> git branch <new branch> |
|
prompt> git checkout <some branch> |
|
prompt> git checkout -b <new branch> |
You can create a branch from any start ...