0

I'm trying to checkout a external repository to my current working copy. This is my setup: Current Working Copy

D:\working_copy\

External Path

D:\external_working_copy\uploads

Then I setup the svn:external property to D:\working_copy\:

uploads file:///D:/SVN/external_working_copy/trunk/uploads

then if I run update on D:\working_copy\ I got the following:

D:\working_copy\uploads

but I want the content of file:///D:/SVN/external_working_copy/trunk/uploads to go to the root of D:\working_copy\ and not create uploads inside D:\working_copy.

I have tried to set as

/ file:///D:/SVN/external_working_copy/trunk/uploads

but everything I got is:

Invalid svn:externals property on 'D:\working_copy': target '/' is an absolute path or involves '..'

Thank you in advance

4

2 回答 2

2

你不能这样做,原因很明显。当你添加一个新文件时,它会如何决定它应该放在一个存储库中还是另一个存储库中?如果您想将工作副本的根目录指向其他位置,您可以直接签出其他位置吗?

于 2010-10-12T21:30:57.930 回答
0

尝试使用.or./作为外部定义中的本地路径。即使那样,我认为它不会起作用。

于 2010-10-12T21:30:12.673 回答