jenkins自动提交代码
·
withCredentials([usernamePassword(credentialsId: 'fixed',
usernameVariable: 'username',
passwordVariable: 'password')]){
sh("git push http://$username:$password@git.corp.mycompany.com/repo")
}
更多推荐
withCredentials([usernamePassword(credentialsId: 'fixed',
usernameVariable: 'username',
passwordVariable: 'password')]){
sh("git push http://$username:$password@git.corp.mycompany.com/repo")
}
更多推荐
所有评论(0)