1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 18:58:38 +00:00

#3091 add config option for Git GC

This commit is contained in:
Unknwon
2016-08-09 17:24:32 -07:00
parent 15b0cbe318
commit b0b88d9bc5
4 changed files with 29 additions and 24 deletions

File diff suppressed because one or more lines are too long

View File

@@ -198,12 +198,13 @@ var (
MaxGitDiffLines int
MaxGitDiffLineCharacters int
MaxGitDiffFiles int
GcArgs []string `delim:" "`
GCArgs []string `delim:" "`
Timeout struct {
Migrate int
Mirror int
Clone int
Pull int
GC int `ini:"GC"`
} `ini:"git.timeout"`
}