final cleaning

This commit is contained in:
2025-08-30 14:52:44 +09:00
parent b31fa82ffd
commit 9a01fc8ba2
2 changed files with 35 additions and 0 deletions

14
git_setup_commands.txt Normal file
View File

@@ -0,0 +1,14 @@
# Инициализировать Git-репозиторий
git init
# Добавить все файлы в индекс (кроме исключенных в .gitignore)
git add .
# Сделать первый коммит
git commit -m "Initial commit"
# Добавить удаленный репозиторий
git remote add origin <URL_вашего_удаленного_репозитория>
# Отправить изменения на удаленный репозиторий
git push -u origin master