summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2016-03-16 13:40:27 +0100
committerJacob Vosmaer <contact@jacobvosmaer.nl>2016-03-16 13:40:27 +0100
commit25600f530f9eac4a7c5ab03dd6b0a51e84922eb7 (patch)
tree39c5e37dc0ec00e70b1b7689b234183e6aa17f4c
parenta34021cd182af49fc732c4ad58f7594f73c46f01 (diff)
downloadgitlab-ce-25600f530f9eac4a7c5ab03dd6b0a51e84922eb7.tar.gz
Update Git source installation steps to 2.7.3
-rw-r--r--doc/install/installation.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 2dd5e495ed4..1894075b72d 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -89,8 +89,9 @@ Is the system packaged Git too old? Remove it and compile from source.
# Download and compile from source
cd /tmp
- curl -L --progress https://www.kernel.org/pub/software/scm/git/git-2.4.3.tar.gz | tar xz
- cd git-2.4.3/
+ curl -O --progress https://www.kernel.org/pub/software/scm/git/git-2.7.3.tar.gz
+ echo '30d067499b61caddedaf1a407b4947244f14d10842d100f7c7c6ea1c288280cd git-2.7.3.tar.gz' | shasum -a256 -c - && tar -xzf git-2.7.3.tar.gz
+ cd git-2.7.3/
./configure
make prefix=/usr/local all