iOSios专题iOS开发

制作cocoapods国内镜像

2017-05-23  本文已影响80人  hament

原文章链接

国内访问cocoapods spec repo速度非常慢,网络不好的话做一次pod update要等半个小时以上。

初始化:

git clone --mirror https://github.com/CocoaPods/Specs.git

编辑config文件

[core]
        repositoryformatversion = 0
        filemode = true
        bare = true
[remote "origin"]
        fetch = +refs/heads/*:refs/heads/*
        fetch = +refs/tags/*:refs/tags/*
        mirror = true
        url = https://github.com/CocoaPods/Specs.git
[remote "mirrors"]
        url = git@gitcafe.com:lloydsheng/Specs.git
        mirror = true
        skipDefaultUpdate = true

定期同步:

git fetch remote
git push mirrors
30 * * * * /home/git/specssync.sh  > /var/log/specssync.log 2>&1

使用镜像:

pod repo remove master
pod repo add master git@gitcafe.com:lloydsheng/Specs.git

最后,如果你不想花时间自己搭的话,可以使用别人在gitcafe上搭建好了的镜像。
https://gitcafe.com/lloydsheng/Specs

上一篇下一篇

猜你喜欢

热点阅读