git子模块行为不正确

时间:2011-10-12 14:09:46

标签: ios git github

我创建了一个模板项目。我叫它测试。我在github上创建了repo。我在克隆的RestKit项目目录中找到了RestKit.xcodeproj文件,并将其拖入Project Navigator。

cd Test
git init
git submodule add git://github.com/RestKit/RestKit.git
git add .
git add -u
git commit -m "first commit"
git push

推送没问题。

我的测试项目:

enter image description here

我决定检查github的回购。我做git clone。克隆还可以,但RestKit.xcodeproj以红色显示。

克隆后的测试项目:

enter image description here

有什么问题?

1 个答案:

答案 0 :(得分:2)

clone后,您需要git submodule update -i