解决git 中Failed to connect to github.com port 443: Timed out

今天在使用Git提交代码时,报错Failed to connect to github.com port 443: Timed out

fatal: unable to access 'https://github.com/henuliyanying/huashan.git/': Failed to connect to github.com port 443: Timed out

原因:是因为设置了代理

解决:取消全局代理

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

取消全局代理:
git config --global --unset http.proxy
 
git config --global --unset https.proxy

如图所示:

解决git 中Failed to connect to github.com port 443: Timed out_第1张图片

在取消全局代理之后,可以正常使用git fetch

你可能感兴趣的:(Git,git,bug)