Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.25 KB

01 - Getting Git.md

File metadata and controls

51 lines (35 loc) · 1.25 KB

Before we begin, make sure you have Git installed on your computer. You can check it out through your command prompt or terminal.

$ git --version

It should display the Git version installed on your computer.

git version 2.14.1.windows.1

Installation

For 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 git

If you are using Fedora, install Git using dnf (or yum, on older versions of Fedora):

$ sudo dnf install git

or

$ sudo yum install git

Git config

Once 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 "[email protected]"

Didn't quite Git it?

Feel free to ask and participate in our Gitter chat room!

References