文章来源:Cocoapods 1.8.0它来了,带着CDN来了,墙裂建议升级
1.8以前
"pod setup"会把 https://github.com/CocoaPods/Specs.git 的master分支,全量下载到~/.cocoapods/repos/master;每次只需pod update,都会更新这个分支。 网络本来就慢,这个库却大的吓人。
1.8以后
使用CDN分发,直接找到三方库的spec地址,直接下载。 所以,不再需要全量下载 https://github.com/CocoaPods/Specs.git 到本地。
如果你已经升级到了1.8,repo master就没有用了,使用下面的代码为你清理出宝贵的硬盘空间吧。
pod repo remove master
总结
- 强烈建议升级
- pod repo remove master 清理空间
- Podfile不要使用 “source 'https://github.com/CocoaPods/Specs.git'”
参考资料
更新2020.2.24
问题
1. CDN: trunk URL couldn't be downloaded: https://raw.githubusercontent.com/CocoaPods/Specs/master/Spec
解决办法 修改hosts 添加
199.232.4.133 raw.githubusercontent.com
网友评论