Cocoapods ':head' 相当于 Mercurial
Cocoapods ':head' equivalent for Mercurial
我创建了名为 Common
的私有 Cocoapods 库,存储在 Mercurial 存储库中。
在 Podfile
我正在使用:
pod 'Common', :hg => "http://bitbucket.com/username/Common"
当我 运行 pod install
它拉取 Pod 时,但是,我没有在存储库中获得最新的提交。
我可以使用类似的东西:
pod 'Common', :hg => "http://bitbucket.com/username/Common", :revision=>'fa7fd53266a0'
但这意味着我总是需要将修订号更改为最新提交。
有没有办法告诉 Podfile 在存储库中获取最新的提交?
谢谢
寻找解决方案 - 刚用过 :revision=>'tip'
:
pod 'Common', :hg => "http://bitbucket.com/username/Common", :revision=>'tip'
.
更新:根据@Ry4an 的提示,我最终使用了:
pod 'Common', :hg => "http://bitbucket.com/username/Common", :branch =>'default'
.
我创建了名为 Common
的私有 Cocoapods 库,存储在 Mercurial 存储库中。
在 Podfile
我正在使用:
pod 'Common', :hg => "http://bitbucket.com/username/Common"
当我 运行 pod install
它拉取 Pod 时,但是,我没有在存储库中获得最新的提交。
我可以使用类似的东西:
pod 'Common', :hg => "http://bitbucket.com/username/Common", :revision=>'fa7fd53266a0'
但这意味着我总是需要将修订号更改为最新提交。
有没有办法告诉 Podfile 在存储库中获取最新的提交?
谢谢
寻找解决方案 - 刚用过 :revision=>'tip'
:
pod 'Common', :hg => "http://bitbucket.com/username/Common", :revision=>'tip'
.
更新:根据@Ry4an 的提示,我最终使用了:
pod 'Common', :hg => "http://bitbucket.com/username/Common", :branch =>'default'
.