|
|
Title: Настройка git
|
|
|
CSS: table.css
|
|
|
|
|
|
[TOP](index)
|
|
|
|
|
|
{{TOC}}
|
|
|
|
|
|
# Настройка git
|
|
|
|
|
|
|
|
|
```
|
|
|
git config --global user.email "name@host"
|
|
|
git config --global user.name "user_name"
|
|
|
|
|
|
git config --global color.status auto
|
|
|
git config --global color.branch auto
|
|
|
git config --global color.diff auto
|
|
|
git config --global color.interactive auto
|
|
|
git config --global push.default simple
|
|
|
|
|
|
git config --global alias.lol "log --all --graph --decorate"
|
|
|
git config --global alias.st "status --short --branch"
|
|
|
```
|
|
|
|