Install git from Debian strech sources

This commit is contained in:
Z.J. van de Weg 2016-09-23 19:36:09 +03:00
parent d5cecaa7dc
commit d0830864e3
4 changed files with 4 additions and 24 deletions

View file

@ -1,15 +0,0 @@
#!/bin/bash
set -xeo pipefail
cd /tmp
wget https://www.kernel.org/pub/software/scm/git/git-2.7.4.tar.gz
echo '7104c4f5d948a75b499a954524cb281fe30c6649d8abe20982936f75ec1f275b git-2.7.4.tar.gz' | shasum -a256 -c -
tar -xzf git-2.7.4.tar.gz
cd git-2.7.4/
./configure
make prefix=/usr/local all
cd /
rm -rf /tmp/*