内容纲要
背景
浏览器用 shadowsocks 可以访问 github,但是在 vscode 里想要推送代码到 github 远程仓库就很不顺利,偶尔能成功,大多数时候会提示
error: RPC failed; curl 28 OpenSSL SSL_read: Connection was reset, errno 10054
使用 git 命令行也不行,提示
fatal: unable to access 'https://github.com/xxx/yyy.git/': Failed to connect to github.com port 443: Timed out
配置代理服务器
很简单,修改 .git/config,添加如下配置
[http]
proxy = 127.0.0.1:1080
git 配置代理服务器