git push 报错 "Peer certificate cannot be authenticated with known CA certificates"

使用git push -u origin master 命令向远程仓库提交代码时报错:Peer certificate cannot be authenticated with known CA certificates

 

这个报错的字面意思是对端的CA证书不能被指明的CA证书认证。 因为git 操作远程仓库的时候 使用的是curl命令,所以curl命令同样报错。

curl 命令可以使用 -k参数关闭掉证书验证,那么git 如何设置来关闭证书验证呢?

解决方法:

         

  git config --global http.sslVerify false  

  

再次git push,没有报错。

posted on 2018-03-30 14:38  hz_pythoner  阅读(2017)  评论(0编辑  收藏  举报

导航