1

XCode プロジェクトに CocoaPods をインストールしたいのですが、pod install コマンドを実行すると、次のメッセージが表示されます。

Analyzing dependencies
[!] Pod::Executable pull

Updating 094c19b..3c2b414
error: Your local changes to the following files would be overwritten by merge:

    FMDB/2.1/FMDB.podspec

    GoogleConversionTracking/1.2.0/GoogleConversionTracking.podspec

    XMPPFramework/3.6.2/XMPPFramework.podspec

Please, commit your changes or stash them before you can merge.

Aborting

問題は、プロジェクト フォルダーに GIT がインストールされていないことです。

git status
fatal: Not a git repository (or any of the parent directories): .git

この問題を解決する方法を知っている人はいますか? 注: これらの .podspecs で何かを変更したことを認識していません

4

1 に答える 1

6

これを修正するには、CocoaPods 仕様リポジトリのローカル コピーを実行して削除しrm -rf ~/.cocoapodspod setup.

于 2013-10-23T21:20:02.233 に答える