Install Git

To begin contributing to GitLab projects, you must download and install the Git client on your computer.

This page provides information on installing Git on macOS and Ubuntu Linux.

For information on downloading and installing Git on other operating systems, see the official Git website.

Install and update Git

Though a version of Git is supplied by macOS, you should install the latest version of Git. A common way to install Git is with Homebrew.

To install the latest version of Git on macOS with Homebrew:

  1. If you’ve never installed Homebrew before, follow the Homebrew installation instructions.
  2. In a terminal, install Git by running brew install git.
  3. Verify that Git works on your computer:

    git --version
    

Keep Git up to date by periodically running the following command:

brew update && brew upgrade git

Configure Git

To start using Git from your computer, you must enter your credentials to identify yourself as the author of your work.

You can configure your Git identity locally or globally:

  • Locally: Use for the current project only.
  • Globally: Use for all current and future projects.

Configure your Git identity locally to use it for the current project only.

The full name and email address should match the ones you use in GitLab.

  1. In your terminal, add your full name. For example:

    git config --local user.name "Alex Smith"
    
  2. Add your email address. For example:

    git config --local user.email "your_email_address@example.com"
    
  3. To check the configuration, run:

    git config --local --list
    

To check your configured Git settings, run:

git config user.name && git config user.email

After you set your name and email address, you should add an SSH key. See Use SSH keys to communicate with GitLab.