解决git报错:‘fatal: unable to access ‘https://XXX: Failed onnect to github. com port 443: Timed out

问题

在这里插入图片描述

解决

发现原来是自己以前用过代理,这里取消代理就可以了

git config --global --unset http.proxy

解决例子

在这里插入图片描述
解决git报错:‘fatal: unable to access ‘https://XXX: Failed onnect to github. com port 443: Timed out_第1张图片

git remote rm origin  //之前git上传地址报错,删除一下
git config --global -l //查看git当前设置
git config --global --unset http.proxy //取消代理
git remote add origin https://github.com/XXX //XXX自己的github项目地址
git push origin master //没有分支,直接上传master

你可能感兴趣的:(随笔,git)