SVN checkout和Subclipse都不起作用

时间:2012-08-31 14:02:48

标签: svn tortoisesvn subclipse

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

我想获得this project的源代码。

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

我安装了 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创建一个启动器应用程序,如果我能以某种方式得到这些代码,它真的会非常有用)

提前致谢!

3 个答案:

答案 0 :(得分:5)

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

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

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

编辑:使用上面的网址我成功从Mac OSX终端的SVN回购中结帐

答案 1 :(得分:1)

网址只是http://android-launcher-plus.googlecode.com/svn/trunk/,您错误地阅读了说明。

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

答案 2 :(得分:1)

尝试退房

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

你应该完成。