Post

Install Git

Installation guide for Git.

Install Git

Installation

  1. Download Git for your computer. Télécharger Git
  1. Install Git with the downloaded installer. Administrator rights are not required.
  2. You can change the configuration during installation if needed.
  3. Perform the initial configuration below

Configuration

  1. Open a terminal
  2. Configure your Git name and email
1
2
git config --global user.name "Your Name"
git config --global user.email "[email protected]"

Vérification

Open your terminal and enter this command:

1
git --version

Git should return the installed version.
verification

This post is licensed under CC BY 4.0 by the author.