mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 23:17:56 +01:00
369 B
369 B
git branch
Main command for working with branches.
- List local branches. The current branch is highlighted by
*
:
git branch
- List all local and remote branches:
git branch -a
- Create new branch based on current branch:
git branch {{BRANCH-NAME}}
- Delete a local branch:
git branch -d {{BRANCH-NAME}}
- Move/Rename a branch:
git branch -m