微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

【教程】Vscode使用Git上传Github问题集

Vscode使用Git上传Github问题集

Failed to connect to github.com port 443: Timed out

提示含义是通过443端口连接github.com错误
事实上,访问github由于网络原因,经常无法访问,所以我们

git config --global --unset http.proxy#删除配置
git config --global http.proxy 127.0.0.1:xxxx#根据自己的代理插件设置全局端口
git config --local http.proxy 127.0.0.1:xxxx #为某个 git 项目单独设置代理

在这里插入图片描述

解决 Failed unable to access ‘***.git/‘:OpenSSL SSL_read: Connection was reset, errno 10054


  • 打开Git命令页面,执行git命令脚本:修改设置,解除ssl验证
git config --global http.sslVerify "false"

在这里插入图片描述

  • 还有

【Git】处理 Unable to access ‘https://github.com’: OpenSSL SSL_read: Connection was reset, errno 10054

  • 也有

记录一次git clone 失败
在git bash执行下面的命令

git config --global http.sslBackend "openssl"

git 提交报错 error: RPC Failed; curl 92 HTTP/2 stream 0 was not closed cleanly: PROTOCOL_ERROR (err 1)

解决fatal: unable to access ‘https://github.com/***/***.git/‘: Empty reply from server

解决fatal: unable to access ‘https://github.com/***/***.git/‘: Empty reply from server

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐