|
@@ -1,6 +1,6 @@
|
|
|
# Лабораторная работа СКВ
|
|
|
|
|
|
-1. Инициализируем репозиторий командой `git init`
|
|
|
+1. Инициализирую репозиторий командой `git init`
|
|
|
|
|
|
```
|
|
|
hint: git init
|
|
@@ -8,7 +8,7 @@ hint: git init
|
|
|
Initialized empty Git repository in C:/Users/User/SKV/.git/
|
|
|
```
|
|
|
|
|
|
-2. Выполняем команду `git status`
|
|
|
+2. Выполняю команду `git status`
|
|
|
```
|
|
|
C:\Users\User\SKV>git status
|
|
|
On branch master
|
|
@@ -17,11 +17,11 @@ No commits yet
|
|
|
|
|
|
nothing to commit (create/copy files and use "git add" to track)
|
|
|
```
|
|
|
-3. Создаем `.gitignore`
|
|
|
+3. Создаю `.gitignore`
|
|
|
|
|
|
-4. Создаем `readme.md`
|
|
|
+4. Создаю `readme.md`
|
|
|
|
|
|
-5. Выполняем команду `git status`
|
|
|
+5. Выполняю команду `git status`
|
|
|
```
|
|
|
C:\Users\User\SKV>git status
|
|
|
On branch master
|
|
@@ -35,11 +35,11 @@ Untracked files:
|
|
|
|
|
|
nothing added to commit but untracked files present (use "git add" to track)
|
|
|
```
|
|
|
-6. Выполняем команду `git add`
|
|
|
+6. Выполняю команду `git add`
|
|
|
```
|
|
|
C:\Users\User\SKV>git add .
|
|
|
```
|
|
|
-7. Выполняем команду `git status`
|
|
|
+7. Выполняю команду `git status`
|
|
|
```
|
|
|
C:\Users\User\SKV>git status
|
|
|
On branch master
|
|
@@ -51,7 +51,7 @@ Changes to be committed:
|
|
|
new file: .gitignore.txt
|
|
|
new file: read.me.txt
|
|
|
```
|
|
|
-8. Выполняем команду `git commit`
|
|
|
+8. Выполняю команду `git commit`
|
|
|
```
|
|
|
C:\Users\User\SKV>commit -m "chv2"
|
|
|
[master (root-commit) 2a704ee] chv2
|
|
@@ -59,18 +59,18 @@ C:\Users\User\SKV>commit -m "chv2"
|
|
|
create mode 100644 .gitignore.txt
|
|
|
create mode 100644 readme.md.txt
|
|
|
```
|
|
|
-9. Выполняем команду `git log`
|
|
|
+9. Выполняю команду `git log`
|
|
|
```
|
|
|
C:\Users\User\SKV>git log
|
|
|
commit 2a704eeb98e9548d8e1a9816c94207c152ebdc15 (HEAD -> master, origin/master)
|
|
|
Author: Ирина Васильева <upuhathe@mail.ru>
|
|
|
Date: Thu Jan 16 14:27:31 2025 +0300
|
|
|
```
|
|
|
-10. Выполняем команду `git remote`
|
|
|
+10. Выполняю команду `git remote`
|
|
|
```
|
|
|
C:\Users\User\SKV>git remote add origin https://kolei.ru/ivasileva/SKV.git
|
|
|
```
|
|
|
-11. Выполняем команду `git push`
|
|
|
+11. Выполняю команду `git push`
|
|
|
```
|
|
|
Username for 'https://kolei.ru': ivasileva
|
|
|
Password for 'https://ivasileva@kolei.ru':
|