Installing the git - UnbDroid/AprendendoGithub GitHub Wiki

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

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