我无法获得cocoapods来下载正确的提交

时间:2015-02-26 16:27:49

标签: ios xcode git cocoapods

这是我要下载的提交:

https://github.com/MegaBits/MagicalRecord/commit/c72306f862250fe4db4be343fc98a105cac98c6c

在我的podfile中,我尝试了一切。我甚至尝试过那个提交,改变它的podspec。它只是不会安装该提交。

我的podfile:

source 'https://github.com/CocoaPods/Specs.git'
pod 'MagicalRecord', :podspec => 'https://raw.githubusercontent.com/MegaBits/MagicalRecord/develop/MagicalRecord.podspec'

我只是出于对此的想法。我需要在该文件中下载该项目的提交内容吗?

2 个答案:

答案 0 :(得分:2)

嗯,我无法理解为什么那不起作用。

我会在Podfile中使用以下行:

pod 'MagicalRecord', :git => 'https://github.com/MegaBits/MagicalRecord.git', :commit => '679f74eaa3'

虽然您可以不使用:commit位并让它跟踪您在分支中所做的任何更改,包括对pod规范的任何进一步更改。

答案 1 :(得分:1)

pod 'MagicalRecord', :git => 'https://github.com/MegaBits/MagicalRecord.git', :commit => 'c72306f'