开启代理后上传代码报错
Failed to connect to github.com port 443 after 75108 ms: Couldn’t connect to server
解决方法
在 网络 设置里查看代理端口号
开启配置 http、https 全局代理
git config --global http.proxy http://127.0.0.1:你所查询的端口号
git config --global https.proxy http://127.0.0.1:你所查询的端口号
例如按照上面我所查询得到的
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
再次进行 push
成功 push 到 github上!!!