We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d528d66 commit f21180eCopy full SHA for f21180e
modules/git/git.go
@@ -24,7 +24,7 @@ import (
24
)
25
26
// RequiredVersion is the minimum Git version required
27
-const RequiredVersion = "2.0.0"
+const RequiredVersion = "2.24.0"
28
29
var (
30
// GitExecutable is the command name of git
@@ -116,8 +116,7 @@ func VersionInfo() string {
116
}
117
format := "%s"
118
args := []interface{}{gitVersion.Original()}
119
- // Since git wire protocol has been released from git v2.18
120
- if setting.Git.EnableAutoGitWireProtocol && CheckGitVersionAtLeast("2.18") == nil {
+ if setting.Git.EnableAutoGitWireProtocol {
121
format += ", Wire Protocol %s Enabled"
122
args = append(args, "Version 2") // for focus color
123
0 commit comments