Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 513 Bytes

File metadata and controls

23 lines (17 loc) · 513 Bytes

Первичная настройка Git

Укажем имя и email (будут отображаться в коммитах):

git config --global user.name "Ваше Имя"
git config --global user.email "you@example.com"

Полезные параметры:

git config --global core.editor "code --wait"
git config --global color.ui auto

Проверка настроек:

git config --list

👉 Далее: Создание репозитория