Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-03-18 00:48:36 +0300
committerRobert Speicher <robert@gitlab.com>2016-03-18 00:48:36 +0300
commitd6e2cbb3ddee32745fc40236f7fd21e56923ff0c (patch)
tree3dd304eeec4d2eff3d7763d7b28cfc73b276a539
parent1322bd78cf593ecf82fa3e449804501d9d652ddc (diff)
parent303a7caa4c4b9784e60aa7f9897e92eaf5801fe4 (diff)
Merge branch '8-2-git-2-7-4' into '8-2-stable'
Bump Git version requirement to 2.7.4 (for 8.2) [ci skip] See merge request !3285
-rw-r--r--CHANGELOG3
-rw-r--r--README.md2
-rw-r--r--doc/install/installation.md7
3 files changed, 8 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index cfdfc40ce21..c4465c63a06 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,8 @@
Please view this file on the master branch, on stable branches it's out of date.
+v 8.2.4
+ - Bump Git version requirement to 2.7.4
+
v 8.2.3
- Fix application settings cache not expiring after changes (Stan Hu)
- Fix Error 500s when creating global milestones with Unicode characters (Stan Hu)
diff --git a/README.md b/README.md
index 52e2d977620..d01c5f3bfc8 100644
--- a/README.md
+++ b/README.md
@@ -70,7 +70,7 @@ GitLab is a Ruby on Rails application that runs on the following software:
- Ubuntu/Debian/CentOS/RHEL
- Ruby (MRI) 2.1
-- Git 1.7.10+
+- Git 2.7.4+
- Redis 2.4+
- MySQL or PostgreSQL
diff --git a/doc/install/installation.md b/doc/install/installation.md
index a304572d37c..2e563fe5d2b 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -75,7 +75,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 1.7.10 or higher, for example 1.7.12 or 2.0.0
+ # Make sure Git is version 2.7.4 or higher
git --version
Is the system packaged Git too old? Remove it and compile from source.
@@ -88,8 +88,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.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