CocoaPods Pod trunk删除不起作用

时间:2016-01-15 03:54:28

标签: cocoapods

当我这样做时:

 $ pod --version
  

0.39.0

但如果我尝试:

$ pod trunk delete 
  

[!]未知命令:delete您的意思是:注册

用法:

$ pod trunk COMMAND

  Interact with the CocoaPods API (e.g. publishing new specs)

命令:

+ add-owner      Add an owner to a pod
+ info           Returns information about a Pod.
+ me             Display information about your sessions
+ push           Publish a podspec
+ register       Manage sessions
+ remove-owner   Remove an owner from a pod

选项:

--silent         Show nothing
--verbose        Show more debugging information
--no-ansi        Show output without ANSI codes
--help           Show help banner of specified command

3 个答案:

答案 0 :(得分:1)

删除不是trunk的命令。 您的帖子中有一系列有效命令。

答案 1 :(得分:0)

看起来pod trunk delete的CocoaPods文档指的是已添加到(当前未发布的)CocoaPods 1.0 beta中的命令。您可以在cocoapods-trunk changelog中看到已添加此命令。一旦发布,您将能够使用它。在此期间,您可以安装带有

的测试版
[sudo] gem install cocoapods --pre

答案 2 :(得分:0)

命令pod trunk用于第三方库,它们自己上传到了cocoapods。 而且,如果您要删除第三方库的一个版本,例如ABCManager(v1.0.2),则可以输入以下内容:pod trunk delete ABCManager v1.0.2,您的库v1.0.2将会被删除。