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

Bump Git version requirement to 2.7.3

parent 3211d1cb
No related branches found
No related tags found
1 merge request!3240Bump Git version requirement to 2.7.3
Pipeline #
Loading
@@ -32,6 +32,9 @@ v 8.6.0 (unreleased)
Loading
@@ -32,6 +32,9 @@ v 8.6.0 (unreleased)
- Move group activity to separate page - Move group activity to separate page
- Continue parameters are checked to ensure redirection goes to the same instance - Continue parameters are checked to ensure redirection goes to the same instance
   
v 8.5.6
- Bump Git version requirement to 2.7.3
v 8.5.5 v 8.5.5
- Ensure removing a project removes associated Todo entries - Ensure removing a project removes associated Todo entries
- Prevent a 500 error in Todos when author was removed - Prevent a 500 error in Todos when author was removed
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 1.7.10+ - Git 2.7.3+
- 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 1.7.10 or higher, for example 1.7.12 or 2.0.0 # Make sure Git is version 2.7.3 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
Loading
Loading
@@ -913,7 +913,7 @@ namespace :gitlab do
Loading
@@ -913,7 +913,7 @@ namespace :gitlab do
end end
   
def check_git_version def check_git_version
required_version = Gitlab::VersionInfo.new(1, 7, 10) required_version = Gitlab::VersionInfo.new(2, 7, 3)
current_version = Gitlab::VersionInfo.parse(run(%W(#{Gitlab.config.git.bin_path} --version))) current_version = Gitlab::VersionInfo.parse(run(%W(#{Gitlab.config.git.bin_path} --version)))
   
puts "Your git bin path is \"#{Gitlab.config.git.bin_path}\"" puts "Your git bin path is \"#{Gitlab.config.git.bin_path}\""
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