cocoa pod 相关错误

warning: inexact rename detection was skipped due to too many files.

warning: you may want to set your diff.renameLimit variable to at least 8865 and retry the command.

 

在git目录下执行下面的命令

git config merge.renameLimit 999999

git config --unset merge.renameLimit

 

 

error: RPC failed; curl 56 SSLRead() return error -9806

 

The git clone is indeed what issue 4293 recommends.

But if the clone fails with a "RPC failed; result=56" error message, check your git buffer:

git config --global http.postBuffer 2M

Then try again your git clone.

If not, investigate with:

GIT_CURL_VERBOSE=1 git clone https://github.com/CocoaPods/Specs.git

Finally, if https does not want to cooperate, try the ssh url:

cd  ~/.cocoapods/repos 
git clone git@github.com:CocoaPods/Specs.git


-- 可能是网络问题,换个时间就好了

posted @ 2017-02-14 10:11  ID_超电磁炮  阅读(433)  评论(0编辑  收藏  举报