在git提交代码给github过程中出现报错Failed to connect to github.com port 443: Timed out
添加这两行代码就解决了
git config --global --unset http.proxy
git config --global --unset https.proxy
在使用Git尝试将代码推送到GitHub时遇到了连接超时的问题,通过执行`git config --global --unset http.proxy`和`git config --global --unset https.proxy`这两行命令,成功地解决了无法连接到github.com port 443的错误。
在git提交代码给github过程中出现报错Failed to connect to github.com port 443: Timed out
添加这两行代码就解决了
git config --global --unset http.proxy
git config --global --unset https.proxy
1660

被折叠的 条评论
为什么被折叠?