How to Install Git On Mac

Last Updated : 7 May, 2026

Git is an essential tool in modern software development. It helps developers track code changes, manage different versions, and work together without conflicts. Whether you are working on personal projects or team projects, Git helps keep your code organized and safe.

Why Git Matters:

  • Tracks code changes and allows you to restore previous versions easily.
  • Helps teams collaborate smoothly by managing code updates and preventing conflicts.

Installing Git on macOS: 3 Methods

You can download Git on macOS by using five different ways, so here are the commands you can run in the terminal to install it:

Method 1: Install Git on macOS from the App Store

Some users may prefer installing Git via the Mac App Store. Here’s how:

Step 1: Browse for Official App store

  • Open Mac App Store from any web browser and select your region.
apple2

Official Website

Step 2: Look up for “GIT” and click to download

  • Search for “Git”.Select an app (e.g., GitUp or other Git GUI tools) that includes Git and follow the installation instructions.
apple33

Click to download

Step 3: Verify the Extraction

  • Verify the installation by running:

git --version

verify3

Verify

Method 2: Install GIT On Mac using Homebrew

Step 1: Get Homebrew in your macOS

  • If you don't have Homebrew, then type the following command in the terminal:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

git-11
Terminal

Step 2: Install Brew

  • We recommend you install Homebrew first and then run the below command to download Git with no errors:

brew install git

git-22
brew install

Step 3: Verify the Installation

  • Once the installation is complete, verify the installation:

git --version

git-33
Verify

Method 3: Install Git on Mac using Xcode Command Line Tools

macOS comes with Xcode Command Line Tools, which includes Git and other development utilities. Here's how to install Git via Xcode:

Step 1: Launch Terminal & Type the following command

  • Launch Terminal by pressing CMD+Space and then type Terminal to start.
term
Terminal
  • Now, type the following command:

xcode-select --install

Step 2: Continue with the Installation

  • This will prompt you to install the Command Line Tools. Click Install to continue. Once the installations complete, verify Git by typing:

git --version

verify3
verify
  • If Git is installed correctly, you will see the version number.
Comment