-1

我正在尝试完成 Google Android 示例应用程序 - DrEdit。请参阅链接:DrEdit Google Android 应用程序

我的问题:如何“克隆 DrEdit 的 git repo 和 init 子模块”?这是链接中的第 2 步。请指教。我正在使用 Eclipse。另外,我是Android新手。

我尝试过的:我打开了 Eclipse,然后单击 Window->Open Perspective->Other->Git Respository Exploring->Clone a Git Repository。但我不知道去哪里或从那里进入什么。

请帮忙。

4

2 回答 2

1

您只需执行git submodule initgit submodule update克隆您的项目。

于 2013-09-08T14:09:39.243 回答
1

在命令行中运行 follinw:

git clone https://github.com/googledrive/dredit.git
cd dredit
git submodule init
git submodule update

我想,egit 中有等效的按钮。但我从来没有用过。命令行对于 git 来说更直观。

最后,您需要从上面创建的文件夹中导入/创建 eclipse 项目。

于 2013-09-08T03:29:02.657 回答