There, a typical checkout looks like this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
deleteDir() | |
checkout scm | |
} |
The solution is to manipulate the scm object, that is present in the multibranch pipeline:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hudson.scm.subversion.UpdateWithCleanUpdater | |
node { | |
def scmClone = scm | |
scmClone.setWorkspaceUpdater( new UpdateWithCleanUpdater()) | |
//scmClone.setWorkspaceUpdater( new UpdateUpdater()) | |
//scmClone.setWorkspaceUpdater( new UpdateWithRevertUpdater()) | |
checkout scmClone | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hudson.scm.subversion.UpdateWithCleanUpdater | |
node { | |
def scmClone = scm | |
scmClone.setWorkspaceUpdater( new UpdateWithCleanUpdater()) | |
scmClone.quietOperation = true | |
checkout scmClone | |
} |