Jenkins Git integration - How to disable SSL certificate validation

后端 未结 7 843
执念已碎
执念已碎 2020-12-30 04:28

I am getting the below error while creating a job from Jenkins. How do I disable certificate validation in Jenkins?

From Git Bash I can use git config --global

7条回答
  •  南笙
    南笙 (楼主)
    2020-12-30 04:42

    Login or switch to jenkins user; for switching run this command on terminal:

    su - jenkins
    

    And then run

    git config --global http.sslVerify false
    

提交回复
热议问题