Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 844 Bytes

Git-install.adoc

File metadata and controls

34 lines (26 loc) · 844 Bytes

Git installation

  1. Navigate to the Install Git guide.

  2. Follow the steps to install Git according to the operating system you are using.

Configuring Git

Configure Git in command line interface with the following steps:

  1. Set your Git user name:

    $ git config --global user.name "your name"
  2. Set your Git user e-mail:

    $ git config --global user.email "your email"
Verification steps
  1. Ensure that your Git user name and email are set:

    $ git config --get-regexp user
    user.name John Smith
    user.email [email protected]