Installation

Installing Git on Linux

Ubuntu/Debian

sudo apt update
sudo apt install git

CentOS/RHEL/Fedora

sudo yum install git  # CentOS/RHEL
sudo dnf install git  # Fedora

Installing Git on macOS

Using Homebrew

brew install git

Using Xcode Command Line Tools

xcode-select --install

Installing Git on Windows

Download from the official Git website: https://git-scm.com/download/win

Or use Chocolatey:

choco install git

Verifying Installation

git --version

This should output something like: git version 2.34.1

Loading