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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
ac0709f4
Commit
ac0709f4
authored
Nov 02, 2020
by
Jan Provaznik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'pks-require-git-v2.29.0' into 'master'
Require Git v2.29.0 See merge request gitlab-org/gitlab!46433
parents
31cc872b
89ae2c2c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
3 deletions
+16
-3
changelogs/unreleased/pks-require-git-v2-29-0.yml
changelogs/unreleased/pks-require-git-v2-29-0.yml
+5
-0
doc/install/installation.md
doc/install/installation.md
+1
-1
doc/install/requirements.md
doc/install/requirements.md
+4
-0
doc/update/README.md
doc/update/README.md
+4
-0
doc/update/upgrading_from_source.md
doc/update/upgrading_from_source.md
+1
-1
lib/system_check/app/git_version_check.rb
lib/system_check/app/git_version_check.rb
+1
-1
No files found.
changelogs/unreleased/pks-require-git-v2-29-0.yml
0 → 100644
View file @
ac0709f4
---
title
:
Require Git v2.29.0
merge_request
:
46433
author
:
type
:
changed
doc/install/installation.md
View file @
ac0709f4
...
...
@@ -135,7 +135,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 2.2
4.0 or higher (recommended version is 2.28
.0)
# Make sure Git is version 2.2
9.0 or higher (recommended version is 2.29
.0)
git
--version
```
...
...
doc/install/requirements.md
View file @
ac0709f4
...
...
@@ -57,6 +57,10 @@ The minimum required Go version is 1.13.
### Git versions
From GitLab 13.6:
-
Git 2.29.x and later is required.
From GitLab 13.1:
-
Git 2.24.x and later is required.
...
...
doc/update/README.md
View file @
ac0709f4
...
...
@@ -228,6 +228,10 @@ possible.
## Version specific upgrading instructions
### 13.6.0
The required Git version is Git v2.29 or higher.
### 13.3.0
The recommended Git version is Git v2.28. The minimum required version of Git
...
...
doc/update/upgrading_from_source.md
View file @
ac0709f4
...
...
@@ -135,7 +135,7 @@ To check you are running the minimum required Git version, see
In Debian or Ubuntu:
```
shell
# Make sure Git is version 2.2
4
.0 or higher
# Make sure Git is version 2.2
9
.0 or higher
git
--version
# Remove packaged Git
...
...
lib/system_check/app/git_version_check.rb
View file @
ac0709f4
...
...
@@ -7,7 +7,7 @@ module SystemCheck
set_check_pass
->
{
"yes (
#{
self
.
current_version
}
)"
}
def
self
.
required_version
@required_version
||=
Gitlab
::
VersionInfo
.
parse
(
'2.2
4
.0'
)
@required_version
||=
Gitlab
::
VersionInfo
.
parse
(
'2.2
9
.0'
)
end
def
self
.
current_version
...
...
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