turtoiseSVN checkout和Subclipse都不起作用



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

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

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

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

但我在乌龟SVN:中得到了这个错误

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中的项目,但我得到了同样的错误。

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

提前感谢!

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

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

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

编辑:使用上面的URL,我成功地从Mac OSX终端的SVN回购中签出

url只是http://android-launcher-plus.googlecode.com/svn/trunk/,您读错了说明。

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

尝试检查

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

你应该被干掉。

最新更新