Skip to main content

Installing Git on Windows

A step‑by‑step walkthrough to install Git on Windows - showing not just the setup, but why it’s essential for every developer’s creative workflow.

· By Shubham Sihasane · 3 min read

Every developer needs a way to keep track of their ideas, experiments, and progress. Git is that magical notebook - it remembers every change, lets you rewind mistakes, and makes teamwork effortless.

On Windows, installing Git isn’t just about setting up software; it’s about inviting this notebook into your workspace, ready to capture your journey from first draft to polished innovation.

This guide will walk you through the installation process step‑by‑step, showing not only how to set up Git but also why it matters for developers who want to build, share, and grow. 🚀✨

✅ Step 1: Check if Git is Already Installed

  • Open Terminal and type:
git --version 
  • If you see a version number (e.g. git version 2.52.0), Gt is already installed.
  • If not, let’s install it.

✅ Step 2: Choose Your Installation Path

There are two main ways to install Git on Windows:

1. Git Setup for Windows (Beginner-Friendly)
  • Go to Git for Windows official site.
Git - Install for Windows
  • Download the installer (.exe).
  • Run the installer and follow the wizard.

Key choices during installation:

  • Editor: Choose your preferred text editor (Developers choice Visual Studio Code).
  • PATH environment: Select “Git from the command line and also from 3rd-party software” - this makes Git available everywhere.
  • HTTPS transport: Use OpenSSL library (default).
  • Line endings: Choose Checkout Windows-style, commit Unix-style (recommended for cross-platform projects).
  • Terminal emulator: Git Bash (recommended).

2. Install via Chocolatey (Developer’s Choice)

Why: Quick, scriptable, and easy to update later.

  • If you use Chocolatey (Windows package manager):
Chocolatey - The package manager for Windows
Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is trusted by businesses to manage software deployments.
choco install git

✅ Step 3: Verify Installation

  • Open Terminal and type:
git --version
  • If you see something like git version 2.52.0, congratulations 🎉 your magical notebook is ready!

✅ Step 4: Initial Setup (Your Signature in the Notebook)

  • Once Git is installed, you need to tell it who you are. This is like signing every page of your notebook.
git config --global user.name "Your Name"
git config --global user.email "your@email.com"
  • Check your git configuration settings:
git config --list

🍎 Wrapping Up:

With Git installed on Windows, your PC becomes more than just a coding machine - it becomes a creative lab where every commit is a page in your story, every branch an experiment, and every merge a collaboration.

You’re no longer juggling files or worrying about lost versions; instead, you’re writing history with confidence. Installing Git is the first step toward fearless development, global collaboration, and shaping ideas that can grow into something extraordinary. 🚀✨

About the author

Shubham Sihasane Shubham Sihasane
Updated on Dec 13, 2025