美文网首页
cocoapod使用技术总结

cocoapod使用技术总结

作者: 剁椒鸡蛋zy | 来源:发表于2019-10-09 17:09 被阅读0次

1. pod 私有库 比如如何维护更新 TEST

  1. 先提交不同代码修改 merge
  2. 通过后,在提交修改版本号 merge
  3. 通过后,打 tag push tag git tag -a 0.1.1 -m "xxx"
  4. 验证 pod lint lib 或者pod sepc lint 文件名.podspec 或者 pod sepc lint 文件名.podspec --sources='http://[privateLibName]/cocoaspecs.git,https://github.com/CocoaPods/Specs.git'

pod spec lint SGAdLibs.podspec --sources='git@git.sogou-inc.com:sogoureaderiosgroup/SogouReaderSpecs.git,https://github.com/CocoaPods/Specs.git' --allow-warnings

  1. 推送 push lib

    pod repo push sogoureader TEST.podspec --allow-warnings 要写上仓库名
    整个过程不用换到 master 分支, 在自己的分支就好, 因为 本质上就是把 podspec 文件推送上去就行,

相关文章

网友评论

      本文标题:cocoapod使用技术总结

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