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

  • 相关阅读:
    九、一级缓存、二级缓存
    八、懒加载
    七、一对一、一对多、多对多
    六、通过mapper接口加载映射文件
    五、动态SQL
    c# ie 设置radio选中状态
    MySQL ----数据库操作
    起点
    Java的三大特性总结
    dom4j操作xml
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13281672.html
Copyright © 2011-2022 走看看