RestKit with Xcode4, but not as a submodule of GitHub

I followed readme until you started using RestKit . Everything works fine when adding RestKit as a submodule of GitHub.

Is there a way to add RestKit to an existing Xcode 4 project, but not as a submodule of GitHub?

The project I want to add to RestKit is not configured using the GitHub repository and will actually go to the subversion repository.

Thanks in advance.

+5
source share
2 answers

I just downloaded it, put it in the root of myproject, unpacked it and renamed it RestKit.

+4
source

git . , git " ( ), .

, git ( ), , .

, , , , ( , ):

cd /path/to/your/project

git submodule add git://github.com/RestKit/RestKit.git RestKit
cd RestKit
# Checkout the current stable branch
git checkout 0.9-stable
# Remove the git repository
rm -fr .git/

+2

All Articles