Skip to main content

Command Palette

Search for a command to run...

How to Install Git: A Simple Step-by-Step Guide

Updated
2 min readView as Markdown
How to Install Git: A Simple Step-by-Step Guide
K
Hi, I’m Khushi Dubey. I work with Cloud and DevOps technologies, with a focus on AWS, Linux, Docker, Kubernetes, Terraform, and CI/CD. Here, I document my hands-on work, technical experiments, and things I learn while working with infrastructure and automation.

Git is a tool that helps track changes in your files, making it useful for coding and project management. Follow this easy guide to install Git on your computer.

Step 1: Download Git

  1. Open your web browser (Chrome, Firefox, Edge, etc.).

  2. Go to the official Git website: https://git-scm.com/

  3. Click on the Download button.

  4. The website will detect your operating system (Windows, macOS, or Linux) and show the correct version to download.

Step 2: Install Git (Windows)

  1. Open the downloaded .exe file.

  2. A setup window will appear. Click Next.

  3. Keep clicking Next to accept default settings unless you want to customize them.

  4. Click Install and wait for the installation to finish.

  5. Click Finish when done.

Step 3: Install Git (MacOS)

  1. Open the downloaded .dmg file.

  2. Follow the on-screen instructions to install Git.

  3. After installation, open Terminal and type:

    git --version

If Git is installed, it will show the version number.

Step 4: Install Git (Linux)

For Ubuntu/Debian:

sudo apt update

sudo apt install git

For Fedora:

sudo dnf install git

For Arch Linux:

sudo pacman -S git

To check if Git is installed, type:

git --version

Step 5: Set Up Git

  1. Open Command Prompt (Windows) or Terminal (Mac/Linux).

  2. Set your name:

git config --global user.name "Your Name"

3. Set your email:

git config --global user.email "your-email@example.com"

4. Verify your settings:

git config --list

Step 6: Verify Installation

To make sure Git is installed correctly, open the Command Prompt or Terminal and type:

git --version

You should see a message like:

git version 2.xx.x

You have successfully installed Git! Now, you can start using it for version control and managing your projects. Happy coding! 🎉


linkedin: https://www.linkedin.com/in/khushi-dubey-6036a2305

Thank You!

N

I found this quite valuable. Looking forward to more posts like this.

More from this blog

Git & GitHub Diaries

11 posts