Reputation: 265
I just updated to the latest seed and ran cocoapods on one of my projects. Everytime I run it I get the following error:
[!] An error occurred while performing git pull
on repo lcl
.
[!] /usr/bin/git pull --ff-only
fatal: Not possible to fast-forward, aborting.
I've tried reinstalling cocoapods, setting up the master repo and still no luck..
Any help appreciated.
Upvotes: 1
Views: 686
Reputation: 771
You should try this:
Upvotes: 0
Reputation: 63984
This probably means you have something stopping you from doing a git pull
in the specs repository in ~/.cocoapods/repos/master
. The easiest way to deal with this is just remove it:
rm -rf ~/.cocoapods
pod setup
Upvotes: 4