How to install GIT on Ubuntu

Go to this link download and install git on your ubuntu laptop.

Once that's done follow the below steps to enable the below git configurations;

  1. git config --global user.name "Your Name"
  2. git config --global user.email youremail@domain.com
  3. git config --global core.editor "code --wait"
  4. git config --global core.autocrlf input

So in brief, on line one, set your name followed by your email. Line three is optional (link your code editor to git) and finally set how git should manage end of lines. With ubuntu you have to set this to 'input' for windows it would be set to 'true'.

 

If you need assistance with your projects feel free to email me at info@airgad.com or whatsapp Jesse stay safe!