zoukankan      html  css  js  c++  java
  • 【debug】LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

    问题描述

    环境:MacOS 10.15.4
    的情况下,能够git clone,但是在git push操作时出现以上问题,搜了搜确实是代理出现了问题,解决方法基本都是关掉代理,本人则重新设置了代理,原~/.gitconfig内容如下:

    [https "https://github.com"]
    	proxy = https://127.0.0.1:1086
    [http "https://github.com"]
    	proxy = socks5://127.0.0.1:1086
    [user]
    	name = JohnJim0816
    

    按照解决git clone太慢的问题的方法更改后的~/.gitconfig内容如下:

    [http]
    	proxy = socks5://127.0.0.1:1086
    [https]
    	proxy = socks5://127.0.0.1:1086
    

    至于网上之所以说关掉代理,估计是他们git clone的时候没有上网,而所以需要删掉~/.gitconfig中的内容

    参考链接

    git使用代理出现LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 错误
    LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
    macos LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
    VS code提交失败,输出提示:OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

  • 相关阅读:
    create joint
    delphi 使用parent让进度条上显示文字
    abSymMeshMEL.txt
    ini写配置信息
    CreateBindGroupNode.txt
    CreateaJointCurve.txt
    09 IKFKMatch.txt
    TIF_to_MAP.BAT
    ImportBVHv20.txt
    FormatDateTime 一段以时间为命令的代码
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13281672.html
Copyright © 2011-2022 走看看