Przejdลบ do treล›ci

๐Ÿ’ฟ Installation


๐Ÿ”ง Install on Linux

1
2
3
sudo apt update
sudo apt install git
git --version

๐Ÿ”ง Install on Windows

  • Install Git for Windows
  • Enable โ€œGit from the command line and also from 3rd-party softwareโ€

๐Ÿ”ง Install on macOS

1
2
brew install git
git --version

๐Ÿ”ง Global Config

1
2
3
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
git config --global core.editor "code --wait"