Enable partial clone by default (#18195)
- Enable partial clones(which are by default disabled from git) by default, unless configured otherwise. - Resolves #18190
This commit is contained in:
parent
1514e13bb8
commit
4b3bfd7e89
5 changed files with 14 additions and 30 deletions
|
@ -27,6 +27,7 @@ var (
|
|||
PullRequestPushMessage bool
|
||||
LargeObjectThreshold int64
|
||||
DisableCoreProtectNTFS bool
|
||||
DisablePartialClone bool
|
||||
Timeout struct {
|
||||
Default int
|
||||
Migrate int
|
||||
|
@ -48,6 +49,7 @@ var (
|
|||
EnableAutoGitWireProtocol: true,
|
||||
PullRequestPushMessage: true,
|
||||
LargeObjectThreshold: 1024 * 1024,
|
||||
DisablePartialClone: false,
|
||||
Timeout: struct {
|
||||
Default int
|
||||
Migrate int
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue