1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| 1.根据pod命令自动创建 pod lib create TestKit
2.将工程提交到远端git库
3.添加私有库到本地pod库 pod repo add TestKit git@git.xxxx.git
4.lint检查 pod lib lint --verbose --allow-warnings --sources='git@xxx.git,https://github.com/CocoaPods/Specs.git,git@xxx.git'
5.打Tag (用Sourcetree等可视化工具也可) git add . git commit -m "update podspec" git push git tag 2.1.8 git push --tags pod repo push xxxx.podspec --allow-warnings --verbose
如果出现最后一步error时,先删除已打的tag,缓存
|