Windows
Descarcati Git de la git-scm.com
Rulati installerul si urmati pasii (setarile implicite sunt recomandate)
Selectati editorul preferat (VS Code este recomandat)
Alegeti "Git from the command line and also from 3rd-party software"
Verificati instalarea: git --version
macOS
# Cu Homebrew (recomandat)
brew install git
# Sau cu Xcode Command Line Tools
xcode-select --install
# Verificare
git --version
Linux (Ubuntu/Debian)
# Instalare
sudo apt update
sudo apt install git
# Verificare
git --version