In this tutorial I will show you how to install git 2.8 On Ubuntu 15.10 / 15.04 / 14.04 LTS and LinuxMint. Git a free and opensour...
In this tutorial I will show you how to install git 2.8 On Ubuntu 15.10 / 15.04 / 14.04 LTS and LinuxMint.
The Latest version of GIT is 2.8 which is a stable version and it is released on 28th march 2016
Installation steps
Method 1 : via ppaMethod 2 : via tar file
Method 1
Step 1: Add the Official PPA provided by GITsudo add-apt-repository ppa:git-core/ppaStep 2: Update the Repository
sudo apt-get updateStep 3: Install GIT 2.8
sudo apt-get install git
Method 2
Download the tar file from the official site or use wgetwget https://www.kernel.org/pub/software/scm/git/git-2.8.tar.gzStep 2:Extract the package and configure it
tar -xvzf git-2.8.tar.gz
./configurestep 3: Compile the git
make && make installNote : if you encounterd any error while using the make command install the below package and once again compile
apt-get install libssl-devCheck the version installed or not
git --version
COMMENTS