Translate

Sunday, June 26, 2016

How to install GIT on Ubuntu from command line


To install GIT on Ubuntu what you have to do is following these steps:

  1.  Type this command on your terminal:

sudo apt install git



      2. Add your configuration:


git config --global user.email "your_email@example.com"
git config --global user.name "Your Name"

2 comments: