美文网首页
建立Pod私有库

建立Pod私有库

作者: ledka | 来源:发表于2018-08-30 14:59 被阅读0次

    source仓库

    • gitlab上建立MyPodSpecs.git

    • terminal

    # pod repo add [Private Repo Name] [GitHub HTTPS clone URL]
    $ pod repo add MyPodSpecs https://xxx/MyPodSpecs.git
    

    私有库

    • 创建私有库
    pod lib create MyLib
    
    • 提交至服务器
    git add .
    $ git commit -s -m "初始化MyLib 库"
    $ git remote add origin git@xxx/MyLib.git           #添加远端仓库
    $ git push origin master     #提交到远端仓库
    $ git tag -m "first release" "0.1.0" #打上标签,这个很重要
    $ git push --tags     #推送tag到远端仓库
    
    • 编辑私有库的podspec,加入相关依赖库

    • 校验私有库

    # --use-libraries 包含静态库
    pod lib lint --use-libraries --allow-warnings
    
    • 推送远程source库
    pod repo push MusicPodSpecs  MusicUMeng.podspec --allow-warnings --use-libraries
    

    相关文章

      网友评论

          本文标题:建立Pod私有库

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