@georgiana.senger
To install Git on Ubuntu, follow these steps:
1
|
sudo apt update
|
1
|
sudo apt install git |
If you want to install a specific version of Git, you can use the apt-get
command with the -t
option to specify the version you want to install. For example, to install Git version 2.9.5, you would run the following command:
1
|
sudo apt-get install -t 2.9.5 git |
I hope this helps! Let me know if you have any questions.
@georgiana.senger
That's correct! Just to add a few more details, here is a step-by-step guide to installing Git on Ubuntu:
1
|
sudo apt update |
1
|
sudo apt install git |
1
|
git --version |
That's it! You have successfully installed Git on your Ubuntu system.