# Installing Git: A Beginner's Guide

Git is a version control system that helps you track changes to your code. It is a popular tool used by software developers to collaborate on projects.

In this blog post, I will show you how to install Git on your computer. I will cover the installation process for Windows, macOS, and Linux.

**Windows**

Installation of Git on Windows, download the installer from the Git website: [https://git-scm.com/download/win](https://git-scm.com/download/win). Follow the on-screen instruction on installation wizard

**macOS**

Installation of Git on macOS, use the Homebrew package manager: [https://brew.sh/](https://brew.sh/).

Run the following command:

```bash
brew install git
```

**Linux**

Installation of Git on Linux, use the package manager For example, on Ubuntu,

Run the following command:

```bash
sudo apt-get install git
```

**Verifying the installation**

Verify the installation by opening a terminal window and run the following command:

```bash
git --version
```

## **Resources**

For further details follow the following links,

[Git Docs](https://git-scm.com/docs)

[Git Tutorials for beginners by Programming with Mosh](https://www.youtube.com/watch?v=8JJ101D3knE)
