在使用cocoapods 進行update 或者 install的時候 每次回去更新獲取的pod specs,每次速度都不是很理想,博主最近對github上的specs倉庫進行了鏡像,分別在gitcafe 和 oschina 如今每10分鐘會進行一次同步 基本和主倉庫保持一致ios
使用方法:git
pod repo remove master pod repo add master https://gitcafe.com/akuandev/Specs.git pod repo update
若是想用oschina的鏡像也能夠把第二條命令 換成 http://git.oschina.net/akuandev/Specs.git
便可github
第二條命令執行的時候會比較耗時 這個時候要去把整個specs倉庫clone一下 大概60M左右spa
若是你尚未使用過coacoapods 這裏有一份安裝的介紹 cocoapods 使用.net
若是不想在pod install pod update的時候不想升級specs庫 可使用參數忽略掉code
pod install --verbose --no-repo-update pod update --verbose --no-repo-update
因爲pod 新版本更新 會致使重複clone 一份pod文件下來,解決方法 Podfile
第一行加入 source ‘https://gitcafe.com/akuandev/Specs.git‘ https://git.oschina.net/6david9/Specsblog
http://akinliu.github.io/2014/05/03/cocoapods-specs-/rem