15 lines
322 B
Markdown
15 lines
322 B
Markdown
---
|
|
tags:
|
|
- IT/Development/Git
|
|
---
|
|
## Verwendung
|
|
|
|
## Konfiguration
|
|
|
|
```shell
|
|
git config --add remote.origin.fetch '+refs/notes/*:refs/notes/*'
|
|
git config --add remote.origin.push '+refs/heads/*:refs/heads/*'
|
|
git config --add remote.origin.push '+refs/notes/*:refs/notes/*'
|
|
git config notes.displayRef 'refs/notes/*'
|
|
```
|