Git Started

Install Git

MacOS

Install Homebrew

brew install git

Windows

Git for Windows

Linux

Install with the distribution's package manager.

Configure the CLI

Prerequisites

  • GitHub username
  • GitHub email
git config --global user.name <username>
git config --global user.email <email>