Gist for https://youtu.be/-u3rz1DbpaA
pipeline {
agent any
stages {
stage('Hello') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://github.com/jenkinsci/git-plugin.git']]])
}
}
}
}
pipeline {
agent any
stages {
stage('Hello') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [[$class: 'CloneOption', noTags: false, reference: '', shallow: false, timeout: 120]], userRemoteConfigs: [[url: 'https://github.com/jenkinsci/git-plugin.git']]])
}
}
}
}