Chúng ta có thể điều chỉnh lại đường dẫn workspace của Job.
node {
ws("/var/jenkins_home/workspace/scripted-checkoutToSubdirectory/someSubDir"){
checkout([
$class: 'GitSCM',
branches: [[name: "origin/master"]],
userRemoteConfigs: [[
url: 'https://github.com/mrnim94/scripted-checkoutToSubdirectory.git'
]]
])
stage('Deploy'){
echo "deploy running"
}
}
}