在使用git push original master | pod repo add 等git pod命令时可能会出现Failed to connect to github.com port 443: Operation timed out这样的错误,出现这类问题后,我就baidu搜索答案,网上出现的答案基本上有这么几种:
一:
1.在终端输入 sudo vim /etc/hosts
2.将Github相关的几行代码注释掉,像这样↓
二:
设置代理
git config --globalhttp.proxy http://127.0.0.1:1080
git config --globalhttps.proxy http://127.0.0.1:1080
或者取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
两种方式我都操作了,依然没有解决掉我这边的问题,继续探究
使用sudo vim /etc/hosts,发现github IP地址为192.30.253.113
通过查询www.github.com的IP地址发现已经更换为140.82.112.3
将github.com的IP改为140.82.112.3
重新pod repo add成功了。