2

这是我的 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
4

1 回答 1

5

它是由 libgit2 中的错误引起的。详细信息和解决方案可以在这个错误报告中找到https://github.com/CocoaPods/CocoaPods/issues/2213

于 2014-08-11T09:32:19.080 回答