Install GIT on Debian 9
You want to use the version control system GIT on Debian 9? No problem, here is how you install it.
Fire up your Terminal session, either with the Terminal application if you are in an desktop environment, or connect through SSH to the Debian machine.
Once done, all you have to do is fire up the following commands:
Update package lists:
1 |
sudo apt-get update |
Install git and it’s dependencies:
1 |
sudo apt-get install git |
And you’re done. Check that the installation was successful by showing the version number:
1 |
git --version |
Result should be similar to:
1 |
git version 2.11.0 |