12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- # Лабораторная работа СКВ
- ##### _1.Создали аккаунт на https://kolei.ru_
- ##### _2.Создали репрезиторий на `kolei.ru`_
- ##### _3.Создали папку `skv`_
- ##### _4.Заходим в папку и иницируем репрезиторий командой_ `git init`
- ```
- hint:git init
- 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
- ```
- ##### _7.Выполняем команду_ `git status`
- ```
- hint: git status
- 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)
- ```
- ##### _8.Создаем_ `README.MD`
- ##### _9.Выполняем команду_ `git add .`
- ##### _10.Потом выполняем команду_ `git commit`
- ```
- git commit -m "new"
- [master (root-commit) 8db214e] new
- 1 file changed, 1 insertion(+)
- create mode 160000 README.MD
- ```
- ##### _11.Далее выполняем команду_ `git log`
- ```
- hint: git log
- commit 4d135642649e1606c232c1fcc7a7e61cd390d050 (HEAD -> master, origin/master)
- ```
- ##### _12.Потом выолняем команду_ `git remote`
- ```
- hint: git remote add origin https://kolei.ru/sshabalina/SKV.git
- ```
- ##### _13.И отправляем содержимое локального репозитория в внешний репозитории с помощью команды_ `git push`
- ```
- hint: git push origin master
- git push origin master
- Username for 'https://kolei.ru':
- Password for 'https://sshabalina@kolei.ru':
- ```
|