问题:
在knoppix发行版的Linux系统系统下,git提交到github时,会报以下这样的错误
<pre>
error: Problem with the SSL CA cert (path? access rights?) while
accessing
https://github.com/perry2008084/essentialCPP.git/info/refs
fatal: HTTP
request failed
</pre>
解决方法:
通过直接关闭SSL证书校验的方法进行提交即可
1
|
git config --global http.sslVerify false
|
以上