Github 挂代理之后无法 push [unable to access ‘xx.git‘: Failed to connect to xx port 443: Timed out]

问题描述

使用代理之后 push 代码提示

unable to access 'xx.git': Failed to connect to chromium.googlesource.com port 443: Timed out

解决办法

清空代理, 重新 push

git config --global --unset http.proxy
git config --global --unset https.proxy

如果无效, 删除 github remote 链接, 重新加入 remote 链接, 然后重新 push

git remote remove 
git remote add  

Over~

你可能感兴趣的:(BUG,github,git)