Cocoapod加速
2019 - 06 - 19
方案
1. 换 Specs 源
使用国内镜像的Specs, 加快 Specs 更新速度,而且如果使用国内镜像 Specs,那么 Podfile 中就必须指明使用这个 Specs
# Podfile
source "git://cocoapodscn.com/Specs.git"
2. 在 pod install
时使用命令 pod install --no-repo-update
跳过更新 repo, 直接以当前 repo 库, 检查更新, 可能会错过最新版本, 而且如果第一次 install 还是要去 github clone 代码
3. 使用 proxychains
使终端命令走代理
proxychains位置: github.com/rofl0r/proxychains-ng
使pod命令走代理,git download 的时候不会走代理
4. 使 git download 走代理
默认系统socks5代理为: socks5://127.0.0.1:1086
git config --global http.proxy socks5://127.0.0.1:1086 #全局代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:1086 #仅github走代理
#取消代理
git config --global --unset http.proxy
git config --global --unset http.https://github.com.proxy