push代码,出现神奇的小错误:
fatal: unable to access 'https://github.com/xd03122049/scalaLearning.git/': error setting certificate verify locations: CAfile: C:/Soft/Git/mingw64/libexec/ssl/certs/ca-bundle.crt CApath: none
**分析原因:**应该是要找到这个正数,但是在这个路径下没有,解决方案自然是用windows的查找功能找到这个ca-bundle.crt
的路径,然后用这个命令从新设置一下,就OK了
$ git config --system http.sslcainfo "C:\Soft\Git\mingw64\ssl\certs\ca-bundle.crt"