git/lang/config.md

22 lines
400 B
Markdown

# Config
## Windows
```sh
git config --global core.autocrlf input
git config --global core.eol lf
```
## Username && Mail
```sh
git config --global user.email "tuz@mail.local"
git config --global user.name "tuz"
git config --global user.name "unknown"
git config --global user.email "unknown@mail.local"
git config --global user.email "name@mail.local"
git config --global user.name "name"
```