1. pod 私有库 比如如何维护更新 TEST
- 先提交不同代码修改 merge
- 通过后,在提交修改版本号 merge
- 通过后,打 tag push tag git tag -a 0.1.1 -m "xxx"
- 验证
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
-
推送 push lib
pod repo push sogoureader TEST.podspec --allow-warnings
要写上仓库名
整个过程不用换到 master 分支, 在自己的分支就好, 因为 本质上就是把 podspec 文件推送上去就行,
网友评论