Skip to content

Installing the git

Carlos Adir edited this page Feb 13, 2018 · 2 revisions

Frist of all, we have to install te git on your machine. If you are using some Linux distribution, for example Ubuntu, you only have to type on your terminal:

sudo apt-get install git

After doing that, you have to put your name and email on git configurations. Doing that, the git will know who are changing the files. To do that, type on terminal:

git config --global user.name YourName
git config --global user.email YourEmail@WhatIs.com

If you typed it wrong, doesn't worry. With the text editor we will fix it.

Clone this wiki locally