错误信息:
fatal: unable to access ‘https://github.com/Avey777/AppUnitTestingFramework.git/’: error setting certificate verify locations: CAfile: ‘pathto/XX-Net-3.6.15/data/gae_proxy/CA.crt’ CApath: none
解决方法
先打开git bash窗口
执行命令:
git config --system http.sslcainfo “C:\Program Files (x86)\git\bin\curl-ca-bundle.crt”
(注意修改为正确的文件路径)或
git config --system http.sslverify false
我使用git config --system http.sslverify false命令解决问题。//解决了问题
来源网址:https://blog.csdn.net/sdhongjun/article/details/52144253