当前位置 : 主页 > 编程语言 > java >

Jenkins pipeline Git 检出的 Step

来源:互联网 收集:自由互联 发布时间:2022-10-26
在 Jenkins 中,可以使用下面的定义来检出需要编译的代码。 stage ( "Pull Source Code" ){ steps { git branch : 'main' , credentialsId : 'd8a95129-132d-46d9-a864-06514d16feba' , url : 'https://src.ossez.com/USVisaTrack/Usv

在 Jenkins 中,可以使用下面的定义来检出需要编译的代码。

stage("Pull Source Code"){
steps {
git branch: 'main',
credentialsId: 'd8a95129-132d-46d9-a864-06514d16feba',
url: 'https://src.ossez.com/USVisaTrack/Usvisatrack-Ui.git'

在 Branch 后面指定我们需要检出的分支。

 

​​

Jenkins pipeline Git 检出的 Step_git

​​

 

当上面代码执行后,将会执行检出。

​​https://www.ossez.com/t/jenkins-pipeline-git-step/14164​​

 

上一篇:Jenkins pipeline 如何到子文件中去执行命令
下一篇:没有了
网友评论