checkout/src/git-source-settings.ts

15 lines
300 B
TypeScript
Raw Normal View History

export interface IGitSourceSettings {
repositoryPath: string
repositoryOwner: string
repositoryName: string
ref: string
commit: string
clean: boolean
fetchDepth: number
lfs: boolean
2020-03-05 20:21:59 +01:00
submodules: boolean
nestedSubmodules: boolean
authToken: string
persistCredentials: boolean
}