我正在尝试将最大 pod 版本设置到我的“Podfile”中,就像 AFNetworking 一样:
pod 'AFNetworking', '~> 2.0'
但我使用的是私有存储库,所以我还需要指定 git 存储库:
pod 'AFNetworking', :git => 'https://github.com/gowalla/AFNetworking.git'
cocoapods 指南:https ://guides.cocoapods.org/using/the-podfile.html示例展示了如何使用特定的分支、标记或提交:
pod 'AFNetworking', :git => 'https://github.com/gowalla/AFNetworking.git', :branch => 'dev'
pod 'AFNetworking', :git => 'https://github.com/gowalla/AFNetworking.git', :tag => '0.7.0'
pod 'AFNetworking', :git => 'https://github.com/gowalla/AFNetworking.git', :commit => '082f8319af'
但没有最大 pod 版本。
如何结合私有 git 存储库和最大 pod 版本?