zoukankan      html  css  js  c++  java
  • Unknown SSL protocol error in connection to xxx:443

    使用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

    之后就可以下载了。

  • 相关阅读:
    Django REST framework 1
    爬虫基本原理
    QueryDict对象
    Django组件ModelForm
    MongoDB
    Algorithm
    BOM
    CSS
    Vue
    AliPay
  • 原文地址:https://www.cnblogs.com/topcoder/p/7985897.html
Copyright © 2011-2022 走看看