pod管理开源库

创建开源库工程之前可以先查看名称是否被使用

https://trunk.cocoapods.org/claims/new

1.创建pod开发工程

pod lib create 

2.在Classes中加入自己的代码
3.在Github上创建仓库
4.将name.podspec中修改git地址和账号
5.关联本地git与远程github仓库关联

git remote add origin https://github.com/zxhiOS/XHCommonKit.git

6.验证name.podspec文件,在此文件目录下

pod lib lint --allow-warnings

6.推到远程仓库

git push -u origin master -f

7.打上tag

git tag -a 0.1.0 -m"v0.1.0"

git push --tags

8.校验本地和远程是否正确

pod spec lint --allow-warnings

9.上传到cocoapods,等待审核

pod trunk push --allow-warnings 

你可能感兴趣的:(pod管理开源库)