2020-03-03 00:33:30 +08:00
|
|
|
export interface IGitSourceSettings {
|
|
|
|
repositoryPath: string
|
|
|
|
repositoryOwner: string
|
|
|
|
repositoryName: string
|
|
|
|
ref: string
|
|
|
|
commit: string
|
|
|
|
clean: boolean
|
|
|
|
fetchDepth: number
|
|
|
|
lfs: boolean
|
2020-03-06 03:21:59 +08:00
|
|
|
submodules: boolean
|
|
|
|
nestedSubmodules: boolean
|
2020-03-03 00:33:30 +08:00
|
|
|
authToken: string
|
2020-03-12 03:55:17 +08:00
|
|
|
sshKey: string
|
|
|
|
sshKnownHosts: string
|
|
|
|
sshStrict: boolean
|
2020-03-03 00:33:30 +08:00
|
|
|
persistCredentials: boolean
|
|
|
|
}
|