jetbrains.buildServer.configs.kotlin.v2017_2.vcs / GitVcsRoot / AgentCleanFilesPolicy

AgentCleanFilesPolicy

enum class AgentCleanFilesPolicy

Specifies flags for the "git clean" command during agent-side checkout and defines which files will be removed.

Enum Values

IGNORED_ONLY

Will run "git clean -dfX"

NON_IGNORED_ONLY

Will run "git clean -df"

ALL_UNTRACKED

Will run "git clean -dfx"