1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 08:15:24 +02:00

git branch -a lists all branches

This commit is contained in:
Eliot Sykes 2015-12-28 18:00:06 +00:00
parent 4d336f17b8
commit 1c82ae15f6

View file

@ -2,10 +2,14 @@
> Main command for working with branches
- List all existing 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}}`