Skip to content

Instantly share code, notes, and snippets.

@Janfy
Created July 14, 2019 20:00
Show Gist options
  • Save Janfy/a39a91b3660e1e878309953cbffba27d to your computer and use it in GitHub Desktop.
Save Janfy/a39a91b3660e1e878309953cbffba27d to your computer and use it in GitHub Desktop.
Install git from source
wget https://github.com/git/git/archive/v2.10.2.zip
apt-get install make unzip gcc autoconf libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev
unzip v2.10.2.zip
cd git-2.10.2
make configure
./configure --prefix=/usr/local
make install
git --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment