这是我的podfile的内容:
platform :ios, '7.0'
pod 'RedditKit', '~> 1.3'
它位于我的iOS项目的根目录(即不是工作区)
当我运行pod install
时收到此错误消息:
$ pod install
Analyzing dependencies
[!] An error occurred while performing `git pull` on repo `master`.
[!] /usr/bin/git pull --ff-only
fatal: Not possible to fast-forward, aborting.
我已经运行gem update --system
来更新我的ruby安装
我的cocoapod
安装
$ gem which cocoapods
/Users/antkong/.rvm/gems/ruby-2.1.2@global/gems/cocoapods-0.33.1/lib/cocoapods.rb
答案 0 :(得分:5)
它是由libgit2中的错误引起的。详细信息和解决方案可在此错误报告https://github.com/CocoaPods/CocoaPods/issues/2213
中找到