使用git从远程下载时,出现Unknown SSL protocol error in connection to xxx:443 错误。

很有可能是被墙在了外面,这里针对墙在外面的情况。

设置代理服务器:

第一种方法:在.gitconfig加上

http.proxy=127.0.0.1:8087

http.sslVerify=false

第二种方法:直接在命令行敲

git config --global http.proxy 127.0.0.1:8087

git config --global http.sslVerify false

之后就可以下载了。

相关文章:

  • 2022-12-23
  • 2021-05-22
  • 2022-12-23
  • 2021-05-25
  • 2021-04-12
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
  • 2021-06-02
  • 2022-12-23
  • 2021-05-21
相关资源
相似解决方案