Download for macOS. There are several options for installing Git on macOS. Note that any non-source distributions are provided by third parties, and may not be up to date with the latest source release. Install homebrew if you don't already have it, then: $ brew install git. Apple ships a binary package of Git with Xcode.
- All of the commands below should work, even on the older versions of Git. They may act a little differently but should work. Git is very good at preserving backward compatibility. Any version after 2.0 should work just fine. How To Install Git on MAC OS. There are a couple of ways to install Git on MAC OS.
- Mac-os-x-terminal-themes Color schemes for default Mac OS X Terminal.app. This is a set of color schemes for default Mac OS X Terminal.app (ported from iTerm 2 color schemes, collected by @mbadolato). Screenshots are below and in the screenshots/ directory of this repo.
- Atom is free to download and runs on Linux, OS X and Windows with support for plug-ins written in Node.js and embedded Git Control. It is based on Electron (formerly known as Atom Shell),a framework for building cross-platform apps using Chromium and Node.js.
For The TL;DR version, you can download Git For OS X in its Google Code Repository.
When sharing my WordPress Developer Toolbox, I mentioned that GitBox is my Git client of choice. As with most software that offers a command line variant, I occasionally end up using a Terminal session to manage some of my Git repositories.
Depending on what other applications you have installed on your system, you may not actually have command line access to Git. If that’s the case and you’d rather not install the full Xcode development suite (because it does include the command line utility), there is an alternative.
Install Git on Mac OS X
1. Download Git OS X Installer
The Git OS X Installer is an open source project hosted on Google Code that makes it incredibly easy to install Git without interfering with any of your front end applications and without needing to install larger development tools.
All of the versions are accessible via the downloads page and all mention Snow Leopard, but are compatible with all Intel processors. Note that the latest version is at the top of the list.
The most recent version at the time of this post is 1.8.0 and fully works with Mountain Lion.
2. Install Git on Mac OS X
The Git OS X Installer is a typical OS X setup program, so simply walk through the steps that the installer provides.
Note that since the files are being installed in /usr/local
you will need root access – that is, you’ll need to enter the administrator’s password during the setup procedure.
Once setup is completed, you should be good to go.
3. Test The Installation
Once the installation is complete, you’ll need to close all active Terminal sessions. Open a new session and issue the git
command. Permitting all is well, you should see a screen similar to what’s above.
And that’s it. Easy enough, right?
Now you can continue to use whatever front end application you like while also being able to issue commands from the command line.
Install Git on Mac OS X
There are several ways to install Git on a Mac. In fact, if you've installed XCode (or it's Command Line Tools), Git may already be installed. To find out, open a terminal and enter git --version
.
Apple actually maintain and ship their own fork of Git, but it tends to lag behind mainstream Git by several major versions. You may want to install a newer version of Git using one of the methods below:
Git for Mac Installer
The easiest way to install Git on a Mac is via the stand-alone installer:
Download the latest Git for Mac installer.
Follow the prompts to install Git.
Open a terminal and verify the installation was successful by typing
git --version
:Configure your Git username and email using the following commands, replacing Emma's name with your own. These details will be associated with any commits that you create:
(Optional) To make Git remember your username and password when working with HTTPS repositories, configure the git-credential-osxkeychain helper.
Install Git with Homebrew
If you have installed Homebrew to manage packages on OS X, you can follow these instructions to install Git:
Open your terminal and install Git using Homebrew:
Verify the installation was successful by typing which
git --version
:Configure your Git username and email using the following commands, replacing Emma's name with your own. These details will be associated with any commits that you create:
(Optional) To make Git remember your username and password when working with HTTPS repositories, install the git-credential-osxkeychain helper.
Install Git with MacPorts
If you have installed MacPorts to manage packages on OS X, you can follow these instructions to install Git:
Open your terminal and update MacPorts:
Search for the latest available Git ports and variants:
Install Git with bash completion, the OS X keychain helper, and the docs:
Configure your Git username and email using the following commands, replacing Emma's name with your own. These details will be associated with any commits that you create:
(Optional) To make Git remember your username and password when working with HTTPS repositories, configure the git-credential-osxkeychain helper.
Install the git-credential-osxkeychain helper
Bitbucket supports pushing and pulling your Git repositories over both SSH and HTTPS. To work with a private repository over HTTPS, you must supply a username and password each time you push or pull. The git-credential-osxkeychain helper allows you to cache your username and password in the OSX keychain, so you don't have to retype it each time.
If you followed the MacPorts or Homebrew instructions above, the helper should already be installed. Otherwise you'll need to download and install it. Open a terminal window and check:
If you receive a usage statement, skip to step 4. If the helper is not installed, go to step 2.
Use curl to download git-credential-osxkeychain (or download it via your browser) and move it to
/usr/local/bin
:Make the file an executable:
Configure git to use the osxkeychain credential helper.
The next time Git prompts you for a username and password, it will cache them in your keychain for future use.
Install Git with Atlassian Sourcetree
Sourcetree, a free visual Git client for Mac, comes with its own bundled version of Git. You can download Sourcetree here.
To learn how to use Git with Sourcetree (and how to host your Git repositories on Bitbucket) you can follow our comprehensive Git tutorial with Bitbucket and Sourcetree.
Build Git from source on OS X
Building Git can be a little tricky on Mac due to certain libraries moving around between OS X releases. On El Capitan (OS X 10.11), follow these instructions to build Git:
From your terminal install XCode's Command Line Tools (if you haven't already):
Install Homebrew.
Using Homebrew, install openssl:
Clone the Git source (or if you don't yet have a version of Git installed, download and extract it):
To build Git run make with the following flags:
Git Clone Mac Os X Terminal
Install Git on Windows
Git for Windows stand-alone installer
Download the latest Git for Windows installer.
When you've successfully started the installer, you should see the Git Setup wizard screen. Follow the Next and Finish prompts to complete the installation. The default options are pretty sensible for most users.
Open a Command Prompt (or Git Bash if during installation you elected not to use Git from the Windows Command Prompt).
Run the following commands to configure your Git username and email using the following commands, replacing Emma's name with your own. These details will be associated with any commits that you create:
Optional: Install the Git credential helper on Windows
Bitbucket supports pushing and pulling over HTTP to your remote Git repositories on Bitbucket. Every time you interact with the remote repository, you must supply a username/password combination. You can store these credentials, instead of supplying the combination every time, with the Git Credential Manager for Windows.
Install Git with Atlassian Sourcetree
Sourcetree, a free visual Git client for Windows, comes with its own bundled version of Git. You can download Sourcetree here.
To learn how to use Git with Sourcetree (and how to host your Git repositories on Bitbucket) you can follow our comprehensive Git tutorial with Bitbucket and Sourcetree.
Install Git on Linux
Debian / Ubuntu (apt-get)
Git packages are available via apt:
From your shell, install Git using apt-get:
Verify the installation was successful by typing
git --version
:Configure your Git username and email using the following commands, replacing Emma's name with your own. These details will be associated with any commits that you create:
Fedora (dnf/yum)
Git packages are available via both yum and dnf:
From your shell, install Git using dnf (or yum, on older versions of Fedora):
or
Verify the installation was successful by typing
git --version
:Configure your Git username and email using the following commands, replacing Emma's name with your own. These details will be associated with any commits that you create
Build Git from source on Linux
Debian / Ubuntu
Git requires the several dependencies to build on Linux. These are available via apt:
Git On Mac
From your shell, install the necessary dependencies using apt-get:
Clone the Git source (or if you don't yet have a version of Git installed, download and extract it):
To build Git and install it under
/usr
, runmake
:
Fedora
Install Git Mac Os
Git requires the several dependencies to build on Linux. These are available via both yum and dnf:
From your shell, install the necessary build dependencies using dnf (or yum, on older versions of Fedora):
or using yum. For yum, you may need to install the Extra Packages for Enterprise Linux (EPEL) repository first:
Symlink docbook2X to the filename that the Git build expects:
Clone the Git source (or if you don't yet have a version of Git installed, download and extract it):
To build Git and install it under
/usr
, runmake
: