美文网首页CocoaPods
执行pod repo add 拉取Pod仓库到本地

执行pod repo add 拉取Pod仓库到本地

作者: 蓝白自由 | 来源:发表于2017-07-17 15:12 被阅读930次
    阿里云Pod仓库指定

    需配置阿里云Pod私有仓库,在Podfile中添加source;

    source 'https://github.com/CocoaPods/Specs.git'
    source 'https://github.com/aliyun/aliyun-specs.git'
    
    pod search为什么搜索不到指定SDK?

    执行pod repo add 拉取Pod仓库到本地;

    pod repo add AliyunRepo https://github.com/aliyun/aliyun-specs.git
    

    或 手动拉取Pod仓库工程到CocoaPods仓库目录(默认为~/.cocoapods/repos);

    git clone https://github.com/aliyun/aliyun-specs.git ~/.cocoapods/repos/
    

    可执行pod repo list 查看本地Pod仓库信息。

    pod repo add 或 git clone 失败?

    仔细核对错误信息,一般为github账号publicKey配置问题。

    【附】Pod命令使用可参考官方文档

    相关文章

      网友评论

        本文标题:执行pod repo add 拉取Pod仓库到本地

        本文链接:https://www.haomeiwen.com/subject/gbafkxtx.html