June 2016
Beginner
456 pages
9h 31m
English
This recipe covers the installation of Git binaries on the Ubuntu server. As always, we will install the latest available Git package.
You will need access to a root account or an account with sudo privileges.
Git maintains a separate repository of the latest binaries on Launchpad. We will use PPA for this repository,to install the latest Git version:
$ sudo add-apt-repository ppa:git-core/ppa
apt repository cache:
$ sudo apt-get update
apt-get install git command:
$ sudo apt-get install git -y
Read now
Unlock full access