组件化创建远程私有库笔记

组件化创建远程私有库笔记
文章图片
image.png 【组件化创建远程私有库笔记】1、创建远程私有库、远程私有Spec库
2、创建私有库模板
pod lib create 库名字
3、将文件拖到classes文件中
4、pod install 安装测试
5、修改描述文件(编辑.podspec文件)
6、本地验证Spec文件
pod lib lint
7、将本地库与远程库绑定
git remote add origin
8、打tag,
git tag -a ’版本’ -m ‘描述’
提交远程
git push - -tags
9、pod spec lint (远程验证):注意要先将修改好的Spec文件推送到远程仓库
8、pod repo push 远程Spec库名 .podSpec文件

    推荐阅读