2019-03-16 08:42:44 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// Git settings
|
|
|
|
Git = struct {
|
2019-07-07 12:56:56 +05:30
|
|
|
Path string
|
2019-05-26 15:20:06 +05:30
|
|
|
DisableDiffHighlight bool
|
|
|
|
MaxGitDiffLines int
|
|
|
|
MaxGitDiffLineCharacters int
|
|
|
|
MaxGitDiffFiles int
|
2021-06-26 16:58:55 +05:30
|
|
|
CommitsRangeSize int // CommitsRangeSize the default commits range size
|
|
|
|
BranchesRangeSize int // BranchesRangeSize the default branches range size
|
2020-01-12 14:16:03 +05:30
|
|
|
VerbosePush bool
|
|
|
|
VerbosePushDelay time.Duration
|
2019-06-08 17:17:46 +05:30
|
|
|
GCArgs []string `ini:"GC_ARGS" delim:" "`
|
2019-05-26 15:20:06 +05:30
|
|
|
EnableAutoGitWireProtocol bool
|
2020-03-08 19:04:38 +05:30
|
|
|
PullRequestPushMessage bool
|
2021-07-01 02:28:45 +05:30
|
|
|
LargeObjectThreshold int64
|
2019-05-26 15:20:06 +05:30
|
|
|
Timeout struct {
|
2019-03-16 08:42:44 +05:30
|
|
|
Default int
|
|
|
|
Migrate int
|
|
|
|
Mirror int
|
|
|
|
Clone int
|
|
|
|
Pull int
|
|
|
|
GC int `ini:"GC"`
|
|
|
|
} `ini:"git.timeout"`
|
|
|
|
}{
|
2019-05-26 15:20:06 +05:30
|
|
|
DisableDiffHighlight: false,
|
|
|
|
MaxGitDiffLines: 1000,
|
|
|
|
MaxGitDiffLineCharacters: 5000,
|
|
|
|
MaxGitDiffFiles: 100,
|
2021-01-19 09:37:38 +05:30
|
|
|
CommitsRangeSize: 50,
|
|
|
|
BranchesRangeSize: 20,
|
2020-01-12 14:16:03 +05:30
|
|
|
VerbosePush: true,
|
|
|
|
VerbosePushDelay: 5 * time.Second,
|
2019-05-26 15:20:06 +05:30
|
|
|
GCArgs: []string{},
|
|
|
|
EnableAutoGitWireProtocol: true,
|
2020-03-08 19:04:38 +05:30
|
|
|
PullRequestPushMessage: true,
|
2021-07-01 02:28:45 +05:30
|
|
|
LargeObjectThreshold: 1024 * 1024,
|
2019-03-16 08:42:44 +05:30
|
|
|
Timeout: struct {
|
|
|
|
Default int
|
|
|
|
Migrate int
|
|
|
|
Mirror int
|
|
|
|
Clone int
|
|
|
|
Pull int
|
|
|
|
GC int `ini:"GC"`
|
|
|
|
}{
|
2021-06-26 16:58:55 +05:30
|
|
|
Default: 360,
|
2019-03-16 08:42:44 +05:30
|
|
|
Migrate: 600,
|
|
|
|
Mirror: 300,
|
|
|
|
Clone: 300,
|
|
|
|
Pull: 300,
|
|
|
|
GC: 60,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func newGit() {
|
|
|
|
if err := Cfg.Section("git").MapTo(&Git); err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Fatal("Failed to map Git settings: %v", err)
|
2019-03-16 08:42:44 +05:30
|
|
|
}
|
|
|
|
}
|