Git branch: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
=Overview= | =Overview= | ||
[[#Overview|git branch]] is used to perform branch-related operations: listing existing branches, creating new local and remote branches, renaming branches and deleting branches. | [[#Overview|git branch]] is used to perform branch-related operations: [[#List_Existing_Branches|listing existing branches]], creating new local and remote branches, renaming branches and deleting branches. | ||
Use [[git checkout]] to check out the content of a branch in the local work area. | Use [[git checkout]] to check out the content of a branch in the local work area. | ||
For a description of the concepts behind Git branches, see: {{Internal|Git_Concepts#Branch|Git Concepts - Branches}} | For a description of the concepts behind Git branches, see: {{Internal|Git_Concepts#Branch|Git Concepts - Branches}} | ||
=List Existing Branches= |
Revision as of 20:21, 19 March 2018
Internal
Overview
git branch is used to perform branch-related operations: listing existing branches, creating new local and remote branches, renaming branches and deleting branches.
Use git checkout to check out the content of a branch in the local work area.
For a description of the concepts behind Git branches, see: