@@ -35,15 +35,15 @@ type CloneRepoOptions struct {
3535 Path string
3636 Storage billy.Filesystem
3737
38- RepoURL string
39- RepoAuth transport.AuthMethod
40- Progress sideband.Progress
41- Insecure bool
42- SingleBranch bool
43- ThinPack bool
44- Depth int
45- CABundle []byte
46- ProxyOptions transport.ProxyOptions
38+ RepoURL string
39+ RepoAuth transport.AuthMethod
40+ Progress sideband.Progress
41+ Insecure bool
42+ SingleBranch bool
43+ ThinPack bool
44+ Depth int
45+ CABundle []byte
46+ ProxyOptions transport.ProxyOptions
4747 SubmoduleDepth int // 0 = disabled, >0 = max recursion depth
4848}
4949
@@ -366,14 +366,14 @@ func CloneOptionsFromOptions(logf func(string, ...any), options options.Options)
366366 }
367367
368368 cloneOpts := CloneRepoOptions {
369- RepoURL : options .GitURL ,
370- Path : options .WorkspaceFolder ,
371- Storage : options .Filesystem ,
372- Insecure : options .Insecure ,
373- SingleBranch : options .GitCloneSingleBranch ,
374- ThinPack : options .GitCloneThinPack ,
375- Depth : int (options .GitCloneDepth ),
376- CABundle : caBundle ,
369+ RepoURL : options .GitURL ,
370+ Path : options .WorkspaceFolder ,
371+ Storage : options .Filesystem ,
372+ Insecure : options .Insecure ,
373+ SingleBranch : options .GitCloneSingleBranch ,
374+ ThinPack : options .GitCloneThinPack ,
375+ Depth : int (options .GitCloneDepth ),
376+ CABundle : caBundle ,
377377 SubmoduleDepth : options .GitCloneSubmodules ,
378378 }
379379
0 commit comments