Commit e10136999437bfcfd810ced0c629a84101e4a007
1 parent
3553e36d
Exists in
spb-stable
and in
2 other branches
Use newer version of git in installation doc.
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
README.md
doc/install/installation.md
... | ... | @@ -60,7 +60,7 @@ Make sure you have the right version of Git installed |
60 | 60 | # Install Git |
61 | 61 | sudo apt-get install -y git-core |
62 | 62 | |
63 | - # Make sure Git is version 1.7.10 or higher, for example 1.7.12 or 1.8.4 | |
63 | + # Make sure Git is version 1.9.3 or higher, for example 1.9.3 | |
64 | 64 | git --version |
65 | 65 | |
66 | 66 | Is the system packaged Git too old? Remove it and compile from source. |
... | ... | @@ -73,8 +73,8 @@ Is the system packaged Git too old? Remove it and compile from source. |
73 | 73 | |
74 | 74 | # Download and compile from source |
75 | 75 | cd /tmp |
76 | - curl --progress https://git-core.googlecode.com/files/git-1.8.5.2.tar.gz | tar xz | |
77 | - cd git-1.8.5.2/ | |
76 | + curl --progress https://www.kernel.org/pub/software/scm/git/git-1.9.3.tar.gz | tar xz | |
77 | + cd git-1.9.3/ | |
78 | 78 | make prefix=/usr/local all |
79 | 79 | |
80 | 80 | # Install into /usr/local/bin | ... | ... |