Compare commits
1 Commits
5e31fe1262
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 6c10f518ce |
@@ -24,6 +24,7 @@ git config --global user.name "My name" # Имя пользователя п
|
|||||||
git config --global user.email my@mail.com # Почта пользователя по умолчанию для всех коммитов
|
git config --global user.email my@mail.com # Почта пользователя по умолчанию для всех коммитов
|
||||||
git config --global color.ui true # Включаем цветной вывод в командах git
|
git config --global color.ui true # Включаем цветной вывод в командах git
|
||||||
git config --global core.quotepath off # Для правильного отображение русских имен файлов
|
git config --global core.quotepath off # Для правильного отображение русских имен файлов
|
||||||
|
git config --global core.editor "code --wait" # Для использования vscode редактора для rebase
|
||||||
git config --global fetch.prune true # Автоматическая очистка remote веток удаленных на сервере
|
git config --global fetch.prune true # Автоматическая очистка remote веток удаленных на сервере
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -34,11 +35,12 @@ git config --global fetch.prune true # Автоматическая оч
|
|||||||
```
|
```
|
||||||
[user]
|
[user]
|
||||||
name = ARNik
|
name = ARNik
|
||||||
email = r.anikeev@gmail.com
|
email = arnik@arnik.ru
|
||||||
[color]
|
[color]
|
||||||
ui = true
|
ui = true
|
||||||
[core]
|
[core]
|
||||||
quotepath = off # отображение русских имен файлов
|
quotepath = off # отображение русских имен файлов
|
||||||
|
editor = code --wait # vscode редактор для rebase
|
||||||
[alias]
|
[alias]
|
||||||
ll = log --oneline --graph --decorate --all
|
ll = log --oneline --graph --decorate --all
|
||||||
st = status --short
|
st = status --short
|
||||||
|
|||||||
Reference in New Issue
Block a user