git中已经设置HTTP sslverify=true 了,但是Jenkins pipeline运行的时候会显示false和true两种状态,这是什么情况
时间: 2024-04-06 08:28:21 浏览: 216
git 和Jenkins
这种情况可能是由于Jenkins运行的用户与git配置的用户不同导致的。可以尝试在Jenkins的Pipeline脚本中设置一下git的配置信息,比如:
```
git([url: 'https://git.example.com/my/repo.git',
branch: 'master',
credentialsId: 'my-git-creds']) {
// Set git config for this pipeline run
sh 'git config http.sslverify true'
// Other git commands here
}
```
在这里,我们在Jenkins Pipeline中设置了git的http.sslverify为true,这样就可以保证Jenkins运行Pipeline时也能使用正确的git配置信息了。
阅读全文