Skip to content
Snippets Groups Projects
Commit 515dd63d authored by Douwe Maan's avatar Douwe Maan
Browse files

Bump Git version requirement to 2.7.4

parent d1fd2cb8
No related branches found
No related tags found
1 merge request!3281Bump Git version requirement to 2.7.4
Pipeline #
Loading
@@ -47,6 +47,9 @@ v 8.6.0 (unreleased)
Loading
@@ -47,6 +47,9 @@ v 8.6.0 (unreleased)
- User deletion is now done in the background so the request can not time out - User deletion is now done in the background so the request can not time out
- Canceled builds are now ignored in compound build status if marked as `allowed to fail` - Canceled builds are now ignored in compound build status if marked as `allowed to fail`
   
v 8.5.8
- Bump Git version requirement to 2.7.4
v 8.5.7 v 8.5.7
- Bump Git version requirement to 2.7.3 - Bump Git version requirement to 2.7.3
   
Loading
Loading
Loading
@@ -68,7 +68,7 @@ GitLab is a Ruby on Rails application that runs on the following software:
Loading
@@ -68,7 +68,7 @@ GitLab is a Ruby on Rails application that runs on the following software:
   
- Ubuntu/Debian/CentOS/RHEL - Ubuntu/Debian/CentOS/RHEL
- Ruby (MRI) 2.1 - Ruby (MRI) 2.1
- Git 2.7.3+ - Git 2.7.4+
- Redis 2.8+ - Redis 2.8+
- MySQL or PostgreSQL - MySQL or PostgreSQL
   
Loading
Loading
Loading
@@ -76,7 +76,7 @@ Make sure you have the right version of Git installed
Loading
@@ -76,7 +76,7 @@ Make sure you have the right version of Git installed
# Install Git # Install Git
sudo apt-get install -y git-core sudo apt-get install -y git-core
   
# Make sure Git is version 2.7.3 or higher # Make sure Git is version 2.7.4 or higher
git --version git --version
   
Is the system packaged Git too old? Remove it and compile from source. Is the system packaged Git too old? Remove it and compile from source.
Loading
@@ -89,9 +89,9 @@ Is the system packaged Git too old? Remove it and compile from source.
Loading
@@ -89,9 +89,9 @@ Is the system packaged Git too old? Remove it and compile from source.
   
# Download and compile from source # Download and compile from source
cd /tmp cd /tmp
curl -O --progress https://www.kernel.org/pub/software/scm/git/git-2.7.3.tar.gz curl -O --progress https://www.kernel.org/pub/software/scm/git/git-2.7.4.tar.gz
echo '30d067499b61caddedaf1a407b4947244f14d10842d100f7c7c6ea1c288280cd git-2.7.3.tar.gz' | shasum -a256 -c - && tar -xzf git-2.7.3.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.3/ cd git-2.7.4/
./configure ./configure
make prefix=/usr/local all make prefix=/usr/local all
   
Loading
@@ -161,7 +161,7 @@ We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](da
Loading
@@ -161,7 +161,7 @@ We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](da
   
# Install the database packages # Install the database packages
sudo apt-get install -y postgresql postgresql-client libpq-dev sudo apt-get install -y postgresql postgresql-client libpq-dev
# Create a user for GitLab # Create a user for GitLab
sudo -u postgres psql -d template1 -c "CREATE USER git CREATEDB;" sudo -u postgres psql -d template1 -c "CREATE USER git CREATEDB;"
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment