2

我对 svn 的这个概念非常陌生,因此这对你来说可能是一个微不足道的问题。但是我真的需要帮助,因为即使在网上搜索了一个多小时后,我也无法找到出路。

我想得到这个项目的源代码。

正如您在浏览部分看到的,所有源代码都可用。

我安装了tortoiseSVN并通过右键单击文件夹来使用SVN Checkout选项。

但是我在 tortoiseSVN 中得到了这个错误:

Command: Checkout from http://android-launcher-plus.googlecode.com/svn/trunk/android-launcher-plus-read-only, revision HEAD, Fully recursive, Externals included  
Error: URL  
Error:  'http://android-launcher-plus.googlecode.com/svn/trunk/android-launcher-plus-read-only'  
Error:  doesn't exist  
Completed!

我什至安装了subclipse并尝试通过签出在 Eclipse 中导入项目,但我得到了同样的错误。

有没有其他方法可以从我提到的网站获取代码?(问题是我需要为 andorid 制作一个启动器应用程序,如果我能以某种方式获得这些代码,那真的会非常有帮助)

提前致谢!

4

3 回答 3

5

存储库的 URL 是http://android-launcher-plus.googlecode.com/svn/trunk/

android-launcher-plus-read-only位是您要放入的本地文件夹。您错过了它们之间的空间。

尝试使用网址http://android-launcher-plus.googlecode.com/svn/trunk/

编辑:使用上面的 URL,我成功地从 Mac OSX 终端的 SVN 存储库中结帐

于 2012-08-31T14:06:48.450 回答
1

网址很简单http://android-launcher-plus.googlecode.com/svn/trunk/,你读错了说明。

正如 Thomas(比我更有帮助)指出的那样,示例 checkout 命令行包含项目的名称,因此它将被检出到名为 的目录android-launcher-plus-read-only,而不是因为它是命令的组成部分。

于 2012-08-31T14:07:05.290 回答
1

尝试签出

svn checkout http://android-launcher-plus.googlecode.com/svn/trunk/ Your_folder_path

你应该完成了。

于 2012-08-31T14:07:57.153 回答