美文网首页
制作开源库,供大家pod

制作开源库,供大家pod

作者: 握青春 | 来源:发表于2019-05-16 15:53 被阅读0次

    1. 在github/OSC上创建库

    2. cd Desktop clone下来

    image.png

    3. cd 到 文件 ,创建 podspec文件

    4. 编辑 podspec文件

    5. 验证podspec文件

    pod lib lint --allow-warnings

    6. 提交文件

    git add -A && git commit -m "初始化"

    7. 打标签

    git tag "v0.0.2"

    8. push 标签

    git push --tags

    9. push 到远程库

    git push origin master

    10. 发布到cocoapods 公共库供别人下载使用

    pod trunk push XLStatusBarHUD.podspec --allow-warnings

    (如果没注册 cocoapods 需要先注册)

    相关文章

      网友评论

          本文标题:制作开源库,供大家pod

          本文链接:https://www.haomeiwen.com/subject/kmviaqtx.html