Git

Git

Нурдөөлөт Рысбаев










Свойства Git

  • Speed
  • Simple design
  • Strong support for non-linear development (thousands of parallel branches)
  • Fully distributed
  • Able to handle large progects like the Linux kernel efficiently (speed and data size)


Установка Git

  • Linux
  • maxOS
  • Windows

https://git-scm.com/download/

https://git-scm.com/book/en/v2/Getting-Started-Installing-Git


Первоначальная настройка Git

  • git config --global user.name "John Doe"
  • git config --global user.email johndoe@example.com
  • git config --global init.defaultBranch main
  • git config --list (git config --list --show-origin)


https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup


Получение Git-репозитория

  • git status
  • git init
  • git add
  • git commit -m 'Initial project version'
  • restore




Report Page