这是我要下载的提交:
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'
我只是出于对此的想法。我需要在该文件中下载该项目的提交内容吗?
答案 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'