记录

  • 前面的操作先不做记录
    1、注册trunk
终端使用:

pod trunk register [email protected] --description= 'abs Mac' --verbose

//如果成功会有这样的输出
[!] Please verify the session by clicking the link in the verification email that has been 
sent to [email protected]
接下来点击邮箱的邮件

命令验证:
pod trunk me

输出:类似

ios2de  i:~ ios2$ pod trunk me
  - Name:     fdhhg mac mini
  - Email:    [email protected]
  - Since:    July 22nd, 01:41
  - Pods:     None
  - Sessions:
    - July 22nd, 01:41 - November 27th, 01:42. IP: jhhhh
    Description: 
podspec 文件创建-------------

git add -A
git commit -m "添加 podspec 文件"

git tag 0.0.1      // 版本号注意:一定要和代码中的一致
git push --tags    //这个必须要有

验证命令:
pod spec lint aaa.podspec --allow-warnings
//提交命令
pod trunk push  aaa.podspec --allow-warnings
  • 下面 简单介绍一下 我们的podspec 文件如何编写

你可能感兴趣的:(记录)