Before we begin, make sure you have Git installed on your computer. You can check it out through your command prompt or terminal.
$ git --versionIt should display the Git version installed on your computer.
git version 2.14.1.windows.1For Mac OS X and Windows users, just download and run the following stand-alone installers:
For Linux users, if you are using Debian/ Ubuntu, install Git using apt-get:
$ sudo apt-get update
$ sudo apt-get install gitIf you are using Fedora, install Git using dnf (or yum, on older versions of Fedora):
$ sudo dnf install gitor
$ sudo yum install gitOnce you've verified that the installation has been successful by typing git --version, configure your global Git username and email:
$ git config --global user.name "Your Name"
$ git config --global user.email "yourname@email.com"Feel free to ask and participate in our Gitter chat room!