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

  • 相关阅读:
    vSphere vCenter的个人理解及问题
    服务器账号过期处理
    虚拟化初探引入
    win10虚拟机跨网段迁移
    win7远程执行win10的抓取代码
    Jenkins+Sonar质量门禁【实践篇pipeline版】
    ELK7.10 license过期处理
    php 0108
    php 0110
    php 0111
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13281672.html
Copyright © 2011-2022 走看看