diff --git a/Correct.txt b/Correct.txt
new file mode 100644
index 0000000..8f7f796
--- /dev/null
+++ b/Correct.txt
@@ -0,0 +1,14 @@
+// 1 раз
+cd папка проекта
+git init
+git checkout -b main
+touch .gitignore
+*пишем в .gitignore какие файлы игнорируются при загрузке
+//
+
+// после каждого изменения
+git add .
+git commit -m "Название коммита"
+git remote add origin адрес репозитория
+git push -u origin main
+//
\ No newline at end of file