Commit e178329b authored by Francisco Javier López's avatar Francisco Javier López Committed by Nick Thomas

Upgraded minimum Git version to 2.18.0

parent 62e0877d
---
title: Upgrade minimum required Git version to 2.18.0
merge_request: 22803
author:
type: other
...@@ -79,7 +79,7 @@ Make sure you have the right version of Git installed ...@@ -79,7 +79,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.9.5 or higher # Make sure Git is version 2.18.0 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.
......
...@@ -7,7 +7,7 @@ module SystemCheck ...@@ -7,7 +7,7 @@ module SystemCheck
set_check_pass -> { "yes (#{self.current_version})" } set_check_pass -> { "yes (#{self.current_version})" }
def self.required_version def self.required_version
@required_version ||= Gitlab::VersionInfo.new(2, 9, 5) @required_version ||= Gitlab::VersionInfo.parse('2.18.0')
end end
def self.current_version def self.current_version
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment