-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomework.txt
31 lines (31 loc) · 1.05 KB
/
homework.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
------------------Послідовність виконання------------------
Якщо не встановлений git - встановити
Створення файлів та папок, створення .gitignore
git --version
git init
git config --global user.name "Roman..."
git config --global user.email "[email protected]"
git checkout -b main
git add */*
git status
git commit -m "1st version - add local files"
git checkout -b front
Створення папки blog з файлами .html, .js
git add */*
git status
git commit -m "add html and js"
git checkout main
Підключення двохвакторки
git remote add origin https://github.com/RomanRakivskyi/lesson11.git
git push -u origin main
Створення файлу README.md
git add .
git status
git commit -m "add readme"
git push -u origin main
git status
Написання тексту послідовності виконання
git add homework.txt
git commit -m "add homework.txt"
git push -u origin main
-------------https://github.com/RomanRakivskyi/lesson11-------------