如何在Windows中使用本地路径访问subversion存储库?

问题描述:

我安装了CollabNet Subversion服务器和客户端,运行其附带的Apache。从服务器上的命令行,我可以使用像

I have CollabNet Subversion server and client installed, running off of Apache that came with it. From the command line on the server, I can easily access the repository using a path like

http://server:port/svn/repository

但我无法使用其在磁盘上的实际位置访问它, p>

but I can't access it using its actual location on the disk, like

c:\repositories\repository

我只是得到[path]不是一个工作副本。我误解了什么?

I just get "[path] is not a working copy." What am I misunderstanding?

常见的错误。你必须使用file:// pseudo-protocol这样:

Common mistake. You have to use the file:// pseudo-protocol like this:

file:///C:/repositories/repository

SVN存储库路径必须 URI s。

SVN repository paths have to be URIs.