我们的podspec 要push 到 cocoapods 上需要先注册帐号,用以下指令
官方文档
& 注册你的邮箱
参1 你的邮箱: 一会要验证的
参2 '你的名称': 注意需要 '' , 就是你的名称, 没什么好说的
参3 --description: 描述,方便以后识别
参4 --verbose: 表示打印详细信息
pod trunk register 你的邮箱 '你的名称' --description=`Personal Laptop` --verbose
之后回车后, 会看到图1这些信息, 然后登陆你的邮箱, 可能在垃圾箱里会看到邮件, 然后它会给你一个地址, 你打开地址, 最后看到图二效果
图1
看到图二, 你可以回到终端Push 你的Lib 了.
图2
& 查看你的信息/ 发布的Pods等, 这个指令还是比较有用的
pod trunk me
& 查看pods 的信息 , 看到version/Owners等
pod trunk info podName
& 删除 pod 中的版本
pod trunk delete podName VERSION
- 最后讲一点注意的,如果你的项目允许别人上传的话,你需要添加他/她为owner
pod trunk add-owner PODName OWNER-EMAIL(他/她的邮箱,当然是已经在trunk注册过的)
- 如果报session 失效
* Authentication token is invalid or unverified. Either verify it with the email that was sent or register a new session.
请run: pod trunk register yourEmail@example.com
之后email 会收到一条链接, 点击就可以验证了
网友评论