|
@@ -11,7 +11,7 @@
|
|
|
hint:git init
|
|
|
Reinitialized existing Git repository in C:/Users/User/skv/.git/
|
|
|
```
|
|
|
-##### _5.Создаем_ `.gitignore` _И заполняем туда игнорируемые файлы и каталоги_
|
|
|
+##### _5.Создаем_ `.gitignore` _и заполняем туда игнорируемые файлы и каталоги_
|
|
|
|
|
|
##### _6.Идентифицируемся_
|
|
|
```
|
|
@@ -19,37 +19,43 @@ hint:git config user.name ssabalina
|
|
|
hint:git config user.email svetashabalina2007@gmail.com
|
|
|
```
|
|
|
|
|
|
-##### _Выполняем команду_ `git status`
|
|
|
+##### _7.Выполняем команду_ `git status`
|
|
|
```
|
|
|
hint: git status
|
|
|
-On branch
|
|
|
-master
|
|
|
-nothing to commit, working tree clean
|
|
|
+it status
|
|
|
+On branch master
|
|
|
+
|
|
|
+No commits yet
|
|
|
+
|
|
|
+Untracked files:
|
|
|
+ (use "git add <file>..." to include in what will be committed)
|
|
|
+ .gitignore/
|
|
|
+
|
|
|
+nothing added to commit but untracked files present (use "git add" to track)
|
|
|
```
|
|
|
|
|
|
|
|
|
-##### _Создаем_ `README.MD`
|
|
|
+##### _8.Создаем_ `README.MD`
|
|
|
|
|
|
-##### _Выполняем команду_ `git add`
|
|
|
+##### _9.Выполняем команду_ `git add .`
|
|
|
|
|
|
-##### _Потом выполняем команду_ `git commit`
|
|
|
+##### _10.Потом выполняем команду_ `git commit`
|
|
|
```
|
|
|
-hint: git commit -m " first commit"
|
|
|
-git commit -m "new commit"
|
|
|
-Onbranch
|
|
|
-master
|
|
|
-nothing to commit, working tree clean
|
|
|
+git commit -m "new"
|
|
|
+[master (root-commit) 8db214e] new
|
|
|
+ 1 file changed, 1 insertion(+)
|
|
|
+ create mode 160000 README.MD
|
|
|
```
|
|
|
-#### _Далее выполняем команду_ `git log`
|
|
|
+##### _11.Далее выполняем команду_ `git log`
|
|
|
```
|
|
|
hint: git log
|
|
|
commit 4d135642649e1606c232c1fcc7a7e61cd390d050 (HEAD -> master, origin/master)
|
|
|
```
|
|
|
-#### _Потом выолняем команду _`git remote`
|
|
|
+##### _12.Потом выолняем команду_ `git remote`
|
|
|
```
|
|
|
hint: git remote add origin https://kolei.ru/sshabalina/SKV.git
|
|
|
```
|
|
|
-#### _И отправляем содержимое локального репозитория в внешний репозитории с помощью команды_ `git push`
|
|
|
+##### _13.И отправляем содержимое локального репозитория в внешний репозитории с помощью команды_ `git push`
|
|
|
```
|
|
|
hint: git push origin master
|
|
|
git push origin master
|