Skip to main content
1

Download the installer

Go to git-scm.com/download/win and select your installer. For most users, choose 64-bit Git for Windows Setup.
2

Run the installer

Open the downloaded .exe file and follow the setup wizard. Leaving all options at their defaults is recommended.
3

Verify the installation

Open your terminal and run:
git --version
This will display the installed Git version.
4

Configure your identity

Set your username and email. These details are attached to every commit you make.
git config --global user.name "Your Name"
git config --global user.email "[email protected]"

Build docs developers (and LLMs) love