美文网首页工作生活
windows jenkins使用git报错解决方法

windows jenkins使用git报错解决方法

作者: FlyXhc | 来源:发表于2019-07-03 17:18 被阅读0次

配置文件路径:C:\Program Files\Git\mingw64\etc.gitconfig
修改配置文件如下:

[http]
    sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
    sslBackend = openssl
# Self Signed Server Certificate
[http "https://192.168.1.32"]
    sslCAInfo = "path\\to\\selvSignedCerts\\fileName.pem"
    sslCAPath = "path\\to\\selvSignedCerts\\"
    sslVerify = false   
[diff "astextplain"]
    textconv = astextplain
[filter "lfs"]
    clean = git-lfs clean -- %f
    smudge = git-lfs smudge -- %f
    process = git-lfs filter-process
    required = true

相关文章

网友评论

    本文标题:windows jenkins使用git报错解决方法

    本文链接:https://www.haomeiwen.com/subject/jqychctx.html