iOS经验总结iOS大咖说iOS开发Crash崩溃信息分析和解决

iOS开发之访问GitHub慢

2021-10-25  本文已影响0人  chasitu

我们一般过一段时间之后访问GitHub会变慢,究其原因其实就是我们的host文件需要更新一下

今天使用cocoapods安装的时候报错了,我们今天解决这个问题的同时也查看一下原因

[!] Error installing ReactiveCocoa
[!] /usr/bin/git clone https://github.com/ReactiveCocoa/ReactiveCocoa.git /var/folders/np/3ty5h5jd439ft50q9s0ygnfh0000gn/T/d20200421-5534-yfmqbf --template= --single-branch --depth 1 --branch 7.2.0

Cloning into '/var/folders/np/3ty5h5jd439ft50q9s0ygnfh0000gn/T/d20200421-5534-yfmqbf'...
fatal: unable to access 'https://github.com/ReactiveCocoa/ReactiveCocoa.git/': Failed to connect to github.com port 443: Operation timed out


看到这里, 我上来就 ping github.com 了一下 发现直接就 timeout了,淡淡的忧伤。

使用DNS工具查找github.com等域名TTL较小的 IP
  1. 打开链接 http://ping.chinaz.com 输入 github.com ,点击Ping检测
  2. 选择一条TTL值最小的ip地址,例如:192.30.255.113
    修改hosts<下面的路径>
    sudo vim /private/etc/hosts
    追加一行:192.30.253.113 github.com

ok

上一篇下一篇

猜你喜欢

热点阅读