mirror of
https://forgejo.mixinet.net/actions/checkout.git
synced 2025-06-15 14:50:45 -06:00
Allow configuration of fetch.parallel (#2)
This commit is contained in:
parent
edc3278d02
commit
4475b1ceed
8 changed files with 63 additions and 13 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue