Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jianliao/def87d947ff62a0dfec150837cfa3ec0 to your computer and use it in GitHub Desktop.

Select an option

Save jianliao/def87d947ff62a0dfec150837cfa3ec0 to your computer and use it in GitHub Desktop.
install git from source (For Ubuntu)
cd ~
sudo apt-install unzip make autoconf libcurl4-gnutls-dev gettext gcc zlib1g-dev
wget -O git.zip https://github.com/git/git/archive/master.zip
unzip git.zip
cd git-*
make configure
./configure --prefix=/usr --without-tcltk
make all
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment