Setting up CocoaPods master repoから進まないとき

-> % pod install
Setting up CocoaPods master repo

から何も進まないときは、単にgitレポジトリが巨大すぎてかなり時間がかかっている模様。

なので、ずーっと待つといつか終わるはずです。

気になる場合は、ctrl-cなどでキャンセルしてverboseオプションつけて再度実行してみるとやっぱりgitのcloneで時間かかってるなぁというのがわかります。

-> % pod install --verbose
  Preparing

Setting up CocoaPods master repo

Cloning spec repo `master` from `https://github.com/CocoaPods/Specs.git` (branch `master`)
  $ /usr/local/bin/git clone https://github.com/CocoaPods/Specs.git master
  Cloning into 'master'...

参考リンク

stackoverflow.com