解决github提交问题集合
# git提交github超时问题
# 设置代理
git config --global http.proxy 127.0.0.1:44444
git config --global http.proxy 127.0.0.1:44444
# 取消设置代理
git config --global --unset http.proxy
git config --global --unset https.proxy
1
2
3
4
5
6
2
3
4
5
6
# Git报错解决:OpenSSL SSL_read: Connection was reset, errno 10054 错误解决
git config --global http.sslVerify "false"
1
# 解决fatal: unable to access 'XXXX': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
git config --global --add remote.origin.proxy "ip:port"
1
上次更新: 2022/03/27, 00:01:02