blob: 2372bf609412be4813949549529aba20ca8e033a [file] [log] [blame]
Denis Egorenkoff32a4d2016-12-21 14:41:53 +00001// Usage example
2node {
3 gerritPatchsetCheckout{
4 credentialsId = "credentials-id-string"
5 }
6}
7
8// Usage example with merging to checkouted branch
9node {
10 gerritPatchsetCheckout{
11 credentialsId = "credentials-id-string"
12 withMerge = true
13 }
14}
15
16// wipe our repository and force clone
17node {
18 gerritPatchsetCheckout{
19 credentialsId = "credentials-id-string"
20 withWipeOut = true
21 }
22}