1.创建远程仓库
2.创建远程代码库(组件)
3.创建本地索引库:
pod repo add 本地索引库name 远程索引库地址
4.创建本地代码仓库:
pod lib create 组件名
5.修改组件代码,并提交
git add .
git status
git commit -m"修改注释"
git push origin master
关联远程仓库(如果需要的话):git remote add origin 远程地址
打tag(必须打tag,且tag要和podspecs文件的版本号一致)git tag "verson"
git push --tags
pod repo push 索引库名字 组件索引文件名.podspec --verbose --use-libraries --allow-warnings
swift库去掉 "--use-libraries"
如果要替换source地址:
pod repo push 索引库名字 组件索引文件名.podspec --allow-warnings --sources=sources地址,sources地址
6.依赖库更新:
cd demoPath pod update 组件名
注意:5-6步不执行一样可以编译并运行查看修改效果(开发中都这样做,版本稳定后再执行第五步提交版本),但是需要依赖dev pod (podfile依赖组件的本地地址就可以了)一定注意在dev pod 修改后需要清理一下在运行,不然会崩溃找不到新添加的方法