解决git报错:‘fatal: unable to access ‘https://XXX: Failed onnect to github. com port 443: Timed out
·
问题
解决
发现原来是自己以前用过代理,这里取消代理就可以了
git config --global --unset http.proxy
解决例子
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
更多推荐
已为社区贡献2条内容
所有评论(0)