cocoapod 在没有 :tag 的情况下获取最新代码的语法

Syntax for a cocoapod to get the latest code without :tag

我有一个私有 cocoa pod,它存储在我的私有存储库中。

其设置正确:

pod 'MyCocoaPod' , :git => 'https://<username>@github.com/account/repo.git', :tag => 'version'

这一直有效。

除非我在开​​发过程中更新 cocoa pod 版本,否则我必须使用它更新项目中的版本。

我如何将 pod 指定为声明,以便每当我 运行 pod 更新时它自己会获得最新版本?

我在没有标签版本的情况下尝试过,但行不通。

所有可用的选项都记录在案here。根据该文档,您可能想要没有标签的相同内容:

pod 'MyCocoaPod' , :git => 'https://<username>@github.com/account/repo.git'

既然你说这对你不起作用,你可以尝试使用 branch 关键字并指向 master:

pod 'MyCocoaPod' , :git => 'https://<username>@github.com/account/repo.git', :branch => 'master'