Allow configuration of fetch.parallel (#2)

This commit is contained in:
Gonzalo Peci 2023-12-14 16:17:43 +01:00 committed by GitHub
parent edc3278d02
commit 4475b1ceed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 63 additions and 13 deletions

View file

@ -54,6 +54,11 @@ export interface IGitSourceSettings {
*/
fetchTags: boolean
/**
* Indicates the maximal number of fetch operations to be run in parallel at a time
*/
fetchParallel: number
/**
* Indicates whether to use the --progress option when fetching
*/
@ -77,7 +82,7 @@ export interface IGitSourceSettings {
/**
* Indicates the number of parallel jobs to use when fetching submodules
*/
submodulesFetchJobs: string
submodulesFetchJobs: number
/**
* The auth token to use when fetching the repository