当我在Jenkins 2 多分支项目中有一个管道时,例如:
node {
stage 'Stage Checkout'
// Checkout code from repository and update any submodules
//checkout scm
git credentialsId: 'myId', url: 'https://gitlab.mycompany.com'
stage 'Stage Build'
echo "My branch is: ${env.BRANCH_NAME}"
}
我确实需要指定credentialsId
andURL
两次:
两次指定这两个属性似乎是多余的。是否有可能只指定一次?