|
@@ -1,33 +1,58 @@
|
|
# Лабораторная работа СКВ
|
|
# Лабораторная работа СКВ
|
|
|
|
+##### _1.Создали аккаунт на https://kolei.ru_
|
|
|
|
+
|
|
|
|
+##### _2.Создали репрезиторий на `kolei.ru`_
|
|
|
|
+
|
|
|
|
+##### _3.Создали папку `skv`_
|
|
|
|
+
|
|
|
|
+##### _4.Заходим в папку и иницируем репрезиторий командой_ `git init`
|
|
|
|
|
|
```
|
|
```
|
|
hint:git init
|
|
hint:git init
|
|
Reinitialized existing Git repository in C:/Users/User/skv/.git/
|
|
Reinitialized existing Git repository in C:/Users/User/skv/.git/
|
|
|
|
+```
|
|
|
|
+##### _5.Создаем_ `.gitignore` _И заполняем туда игнорируемые файлы и каталоги_
|
|
|
|
|
|
|
|
+##### _6.Идентифицируемся_
|
|
|
|
+```
|
|
|
|
+hint:git config user.name ssabalina
|
|
|
|
+hint:git config user.email svetashabalina2007@gmail.com
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+##### _Выполняем команду_ `git status`
|
|
|
|
+```
|
|
hint: git status
|
|
hint: git status
|
|
On branch
|
|
On branch
|
|
master
|
|
master
|
|
nothing to commit, working tree clean
|
|
nothing to commit, working tree clean
|
|
|
|
+```
|
|
|
|
|
|
-hint: git config user.name sshabalina
|
|
|
|
-hint: git config user.email svetashabalina2007@gmail.com
|
|
|
|
|
|
|
|
-hint: git config --global https://kolei.ru/sshabalina/SKV.git false
|
|
|
|
-hint: git add .
|
|
|
|
|
|
+##### _Создаем_ `README.MD`
|
|
|
|
|
|
|
|
+##### _Выполняем команду_ `git add`
|
|
|
|
+
|
|
|
|
+##### _Потом выполняем команду_ `git commit`
|
|
|
|
+```
|
|
hint: git commit -m " first commit"
|
|
hint: git commit -m " first commit"
|
|
git commit -m "new commit"
|
|
git commit -m "new commit"
|
|
Onbranch
|
|
Onbranch
|
|
master
|
|
master
|
|
nothing to commit, working tree clean
|
|
nothing to commit, working tree clean
|
|
-
|
|
|
|
|
|
+```
|
|
|
|
+#### _Далее выполняем команду_ `git log`
|
|
|
|
+```
|
|
hint: git log
|
|
hint: git log
|
|
commit 4d135642649e1606c232c1fcc7a7e61cd390d050 (HEAD -> master, origin/master)
|
|
commit 4d135642649e1606c232c1fcc7a7e61cd390d050 (HEAD -> master, origin/master)
|
|
-
|
|
|
|
|
|
+```
|
|
|
|
+#### _Потом выолняем команду _`git remote`
|
|
|
|
+```
|
|
hint: git remote add origin https://kolei.ru/sshabalina/SKV.git
|
|
hint: git remote add origin https://kolei.ru/sshabalina/SKV.git
|
|
|
|
+```
|
|
|
|
+#### _И отправляем содержимое локального репозитория в внешний репозитории с помощью команды_ `git push`
|
|
|
|
+```
|
|
hint: git push origin master
|
|
hint: git push origin master
|
|
git push origin master
|
|
git push origin master
|
|
Username for 'https://kolei.ru':
|
|
Username for 'https://kolei.ru':
|
|
Password for 'https://sshabalina@kolei.ru':
|
|
Password for 'https://sshabalina@kolei.ru':
|
|
-
|
|
|
|
-```
|
|
|
|
|
|
+```
|