@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.