diff options
author | Alejandro RodrÃguez <alejorro70@gmail.com> | 2018-01-31 17:02:50 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2018-01-31 17:02:50 +0000 |
commit | c01f81fa084284719dc305486980b5e6c58d429f (patch) | |
tree | 61247e6bee74297b78eebc1c9baed7f739723235 /doc/install | |
parent | a4d84192aec02372ab6ab0f5747fd63aaa19e4ec (diff) | |
download | gitlab-ce-c01f81fa084284719dc305486980b5e6c58d429f.tar.gz |
[ci skip] Fix example commands to refer to the correct versions
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/installation.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index 18e29271d0f..6eb8890cc4f 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -80,7 +80,7 @@ Make sure you have the right version of Git installed # Install Git sudo apt-get install -y git-core - # Make sure Git is version 2.14.3 or higher + # Make sure Git is version 2.9.5 or higher git --version Is the system packaged Git too old? Remove it and compile from source. @@ -93,9 +93,9 @@ Is the system packaged Git too old? Remove it and compile from source. # Download and compile from source cd /tmp - curl --remote-name --progress https://www.kernel.org/pub/software/scm/git/git-2.8.4.tar.gz - echo '626e319f8a24fc0866167ea5f6bf3e2f38f69d6cb2e59e150f13709ca3ebf301 git-2.8.4.tar.gz' | shasum -a256 -c - && tar -xzf git-2.8.4.tar.gz - cd git-2.8.4/ + curl --remote-name --progress https://www.kernel.org/pub/software/scm/git/git-2.14.3.tar.gz + echo '023ffff6d3ba8a1bea779dfecc0ed0bb4ad68ab8601d14435dd8c08416f78d7f git-2.14.3.tar.gz' | shasum -a256 -c - && tar -xzf git-2.14.3.tar.gz + cd git-2.14.3/ ./configure make prefix=/usr/local all |