2020-03-02 16:33:30 +00:00
|
|
|
export interface IGitSourceSettings {
|
|
|
|
repositoryPath: string
|
|
|
|
repositoryOwner: string
|
|
|
|
repositoryName: string
|
|
|
|
ref: string
|
|
|
|
commit: string
|
|
|
|
clean: boolean
|
|
|
|
fetchDepth: number
|
|
|
|
lfs: boolean
|
2020-03-05 19:21:59 +00:00
|
|
|
submodules: boolean
|
|
|
|
nestedSubmodules: boolean
|
2020-03-02 16:33:30 +00:00
|
|
|
authToken: string
|
|
|
|
persistCredentials: boolean
|
|
|
|
}
|