Browse Source

Обновить 'Readme.md'

mapetrov 10 months ago
parent
commit
2664fec8d3
1 changed files with 29 additions and 0 deletions
  1. 29 0
      Readme.md

+ 29 - 0
Readme.md

@@ -6,19 +6,23 @@
 
 `Initialized empty Git repository in E:/Рабочий стол/test/.git/`
 
+
 Идентификация репозитория:
 
 `git config user.name "Ваше имя"`
 `git config user.email "Ваша почта"`
 
+
 Отключение проверки сертификата:
 
 `git config --global http.sslVerify false`
 
+
 Привязка .gitignore командой:
 
 `git add .`
 
+
 Сохранение отслеживаемых файлов в локальный репозиторий:
 
 `git commit -m "text"`
@@ -32,4 +36,29 @@
 ```
 
 
+Добавление в настройки локального репозитория ссылку на внешний репозиторий:
+
+`git remote add origin https://kolei.ru/mapetrov/Lab1.git`
+
+
+Отправление содержимого локального репозитория в внешний репозиторий:
+
+`git push origin master`
+
+Вывод:
+
+```
+Enumerating objects: 3, done.
+Counting objects: 100% (3/3), done.
+Delta compression using up to 12 threads
+Compressing objects: 100% (2/2), done.
+Writing objects: 100% (3/3), 396 bytes | 396.00 KiB/s, done.
+Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
+To https://kolei.ru/mapetrov/Lab1.git
+ * [new branch]      master -> master
+branch 'master' set up to track 'origin/master'.
+
+```
+
+