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.

- 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):

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. 🚀✨
