Install Git
Choose your OS:
Windows: Download installer from https://git-scm.com/download/win and run it.
macOS: Run xcode-select --install in Terminal or download from https://git-scm.com/download/mac.
Linux (Ubuntu/Debian): sudo apt update && sudo apt install git
Verify: git --version
First-Time Setup
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
Verify: git config --list