git pull时提示:fatal: unable to access ‘https://xxx/xxx/xxx.git/’: error setting certificate verify locations: CAfile: C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt CApath: none通过搜索发现ca-bundle.crt真是的目录是C:/soft/Git/mingw64/ssl/certs/ca-bundle.crt因此需要修改gitconfig的文件C:\soft\Git\mingw64\etc\gitconfig最终将sslCAInfo修改成ca-bundle.crt的位置后, git pull 成功[http] sslCAInfo = C:/soft/Git/mingw64/ssl/certs/ca-bundle.crt sslBackend = openssl[diff “astextplain”] textconv = astextplain[filter “lfs”] clean = git-lfs clean – %f smudge = git-lfs smudge – %f process = git-lfs filter-process required = true[credential] helper = manager