git push 報錯 "Peer certificate cannot be authenticated with known CA certificates"

使用git push -u origin master 命令向遠程倉庫提交代碼時報錯:Peer certificate cannot be authenticated with known CA certificatesgit

 

這個報錯的字面意思是對端的CA證書不能被指明的CA證書認證。 由於git 操做遠程倉庫的時候 使用的是curl命令,因此curl命令一樣報錯。bash

curl 命令可使用 -k參數關閉掉證書驗證,那麼git 如何設置來關閉證書驗證呢?curl

解決方法:url

         

  git config --global http.sslVerify false  

  

再次git push,沒有報錯。spa

相關文章
相關標籤/搜索