#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"`
}