Update git-memo.content.md: remove :

This commit is contained in:
Tobias 2024-07-14 11:31:25 +02:00 committed by GitHub
parent 23702258ca
commit bdc2889ddb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,19 +37,19 @@ git commit --amend --no-edit
## Branches
Lists all local branches in your repository (use -a for local and remote branches):
Lists all local branches in your repository (use -a for local and remote branches)
```shell
git branch
```
Switch to an existing branch:
Switch to an existing branch
```shell
git switch [branch name]
```
Create a new branch:
Create a new branch
```shell
git checkout -b [branch name]