????????这个问题是因为git配置里crt证书的路径不正确导致的
C:\Program Files\Git\etc\gitconfig
中,应该所有人的配置都在这里[diff "astextplain"]
textconv = astextplain
[http]
sslBackend = openssl
sslCAInfo = D:/Git/mingw64/ssl/certs/ca-bundle.crt # 原来默认写的就是 C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
[core]
autocrlf = true
fscache = true
symlinks = false
[pull]
rebase = false
[credential]
helper = manager-core
[credential "https://dev.azure.com"]
useHttpPath = true
[init]
defaultBranch = master
?
D:\Git\
,所以我本机的crt文件就在D:/Git/mingw64/ssl/certs/ca-bundle.crt