readme.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Лабораторная работа СКВ
  2. ##### _1.Создали аккаунт на https://kolei.ru_
  3. ##### _2.Создали репрезиторий на `kolei.ru`_
  4. ##### _3.Создали папку `skv`_
  5. ##### _4.Заходим в папку и иницируем репрезиторий командой_ `git init`
  6. ```
  7. hint:git init
  8. Reinitialized existing Git repository in C:/Users/User/skv/.git/
  9. ```
  10. ##### _5.Создаем_ `.gitignore` _и заполняем туда игнорируемые файлы и каталоги_
  11. ##### _6.Идентифицируемся_
  12. ```
  13. hint:git config user.name ssabalina
  14. hint:git config user.email svetashabalina2007@gmail.com
  15. ```
  16. ##### _7.Выполняем команду_ `git status`
  17. ```
  18. hint: git status
  19. it status
  20. On branch master
  21. No commits yet
  22. Untracked files:
  23. (use "git add <file>..." to include in what will be committed)
  24. .gitignore/
  25. nothing added to commit but untracked files present (use "git add" to track)
  26. ```
  27. ##### _8.Создаем_ `README.MD`
  28. ##### _9.Выполняем команду_ `git add .`
  29. ##### _10.Потом выполняем команду_ `git commit`
  30. ```
  31. git commit -m "new"
  32. [master (root-commit) 8db214e] new
  33. 1 file changed, 1 insertion(+)
  34. create mode 160000 README.MD
  35. ```
  36. ##### _11.Далее выполняем команду_ `git log`
  37. ```
  38. hint: git log
  39. commit 4d135642649e1606c232c1fcc7a7e61cd390d050 (HEAD -> master, origin/master)
  40. ```
  41. ##### _12.Потом выолняем команду_ `git remote`
  42. ```
  43. hint: git remote add origin https://kolei.ru/sshabalina/SKV.git
  44. ```
  45. ##### _13.И отправляем содержимое локального репозитория в внешний репозитории с помощью команды_ `git push`
  46. ```
  47. hint: git push origin master
  48. git push origin master
  49. Username for 'https://kolei.ru':
  50. Password for 'https://sshabalina@kolei.ru':
  51. ```