Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
5fd88cdd
Commit
5fd88cdd
authored
Mar 15, 2016
by
Robert Speicher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'git-2-7-3' into 'master'
Bump Git version requirement to 2.7.3 [ci skip] See merge request !3240
parents
a80b49ba
cd683714
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
+6
-3
CHANGELOG
CHANGELOG
+3
-0
README.md
README.md
+1
-1
doc/install/installation.md
doc/install/installation.md
+1
-1
lib/tasks/gitlab/check.rake
lib/tasks/gitlab/check.rake
+1
-1
No files found.
CHANGELOG
View file @
5fd88cdd
...
@@ -40,6 +40,9 @@ v 8.6.0 (unreleased)
...
@@ -40,6 +40,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.7
- Bump Git version requirement to 2.7.3
v 8.5.6
v 8.5.6
- Obtain a lease before querying LDAP
- Obtain a lease before querying LDAP
...
...
README.md
View file @
5fd88cdd
...
@@ -68,7 +68,7 @@ GitLab is a Ruby on Rails application that runs on the following software:
...
@@ -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
...
...
doc/install/installation.md
View file @
5fd88cdd
...
@@ -76,7 +76,7 @@ Make sure you have the right version of Git installed
...
@@ -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.
...
...
lib/tasks/gitlab/check.rake
View file @
5fd88cdd
...
@@ -913,7 +913,7 @@ namespace :gitlab do
...
@@ -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
}
\"
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment