Files
nas_control_bot/git_setup_commands.txt
2025-08-30 14:52:44 +09:00

15 lines
521 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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