-
Navigate to the Install Git guide.
-
Follow the steps to install Git according to the operating system you are using.
Configure Git in command line interface with the following steps:
-
Set your Git user name:
$ git config --global user.name "your name"
-
Set your Git user e-mail:
$ git config --global user.email "your email"
Verification steps
-
Ensure that your Git user name and email are set:
$ git config --get-regexp user user.name John Smith user.email [email protected]