0

I checked out a huge project using TortoiseSVN and it worked fine and I can even update it. But when I try to update it using the command line SlikSVN client it tries to access a relative path just short of 255 characters. The absolute path would be much longer than 255 characters.

It stops updating with this error:

svn: Kann Datei »very\long\path\.svn\text-base\LongClassName.java.svn-base« nicht öffnen: The system cannot find the path specified. The German translates roughly to "Can't open file"

Is it possible to update this folder from a batch file at all or do I have to use Eclipse with Subversive or TortoiseSVN which seem like they don't have the 255 character limitation but can't be used in a batch file?

4

1 に答える 1

2

substを使用してパスを短縮し、短縮されたパスで svn を使用してみてください。

subst X:\ D:\development\projects\yourlongpath\..

最近のプロジェクトで同様の問題が発生し、この方法で解決できました。

編集
プロジェクトを更新するには、新しいマッピングを使用できます。

svn update X:\
于 2013-02-05T13:23:07.023 に答える