In this tutorial you will learn how to install Git on Ubuntu Server
Code used during this tutorial:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Git install on Ubuntu Server # Connect to VM ssh ubuntu-vm # Install Git sudo apt-get update sudo apt-get install git # Check the installation # locate git command which git # Git version git --version # Useful links http://git-scm.com/downloads |
Useful links:
http://git-scm.com/downloads