readme.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ```
  2. $ git init
  3. ```
  4. ```
  5. Initialized empty Git repository in C:/Users/Foder/Desktop/bish/.git/
  6. ```
  7. Создаёт в текущем каталоге новый подкаталог с именем .git содержащий все необходимые файлы репозитория
  8. ```
  9. $ git config user.name "KKonstantinov"
  10. ```
  11. Добавляет имя в репозиторий
  12. ```
  13. $ git config user.email "shalri.gg@gmail.com"
  14. ```
  15. Добавляет почту
  16. ```
  17. $ git add .
  18. ```
  19. Добавляет все файлы с папки в репозиторий
  20. ```
  21. $ git commit -m "first commit"
  22. ```
  23. ```
  24. [master (root-commit) 68fc25f] first commit
  25. 1 file changed, 7 insertions(+)
  26. create mode 100644 .gitignore.txt
  27. ```
  28. Сохраняет файлы в папке
  29. ```
  30. $ git remote add origin https://kolei.ru/KKonstantinov/bishbashbosh.git
  31. ```
  32. Добавляет ссылку на свой внешений репозиторий
  33. ```
  34. $ git push -u origin master
  35. ```
  36. ```
  37. Enumerating objects: 3, done.
  38. Counting objects: 100% (3/3), done.
  39. Delta compression using up to 16 threads
  40. Compressing objects: 100% (2/2), done.
  41. Writing objects: 100% (3/3), 402 bytes | 402.00 KiB/s, done.
  42. Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
  43. To https://kolei.ru/KKonstantinov/bishbashbosh.git
  44. * [new branch] master -> master
  45. branch 'master' set up to track 'origin/master'.
  46. ```
  47. Перекидывает файлы с локального репозитория на внешний репозиторий