1、先在github上创建一个仓库(添加.gitignore、LICENESE、README.md文件会很方便)。
2、将此仓库git clone下来。
3、添加自己的代码到文件夹内
4、创建podspec文件( 创建podspec文件有2种方式,一种是通过终端输入指令创建,一种是找一个标准第三方库的podspec文件并在此基础上改改。)
pod spec create XXXX.podspec
5、上传podspec文件
在上传之前,先打个tag标记,然后再验证下podspec文件是否正确
创建tag
/// 创建tag
git tag '1.0.0'
/// 上传tags
git push --tags
删除tag
//查看tag
git tag
//删除一个指定的tag,并上传一个空tag到远程tag
git tag -d <tagname>
git push origin :refs/tags/<tagname>
6、验证Podspec
pod lib lint
//或者
pod lib lint --allow-warnings
// 或者
pod spec lint YMConfigSpecManager.podspec
//
pod spec lint YMConfigSpecManager.podspec --allow-warnings
7、上传
pod trunk push ZLCategary.podspec --allow-warnings