Skip to content

Instantly share code, notes, and snippets.

View NSKryukov's full-sized avatar
🐧
Focusing

Nikita NSKryukov

🐧
Focusing
View GitHub Profile
Настройка Git клиента для идентификации пользователя:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
git config --global core.editor "your editor"
Инициализация репозитория в текущем каталоге:
git init
Создает репозиторий в указанном каталоге:
git init <directory>