cm.getMoveClient().doMove(orig, newFile);
>>
>> Here is what worked for me:
>>
>> SVNClientManager cm = ...;
>> cm.getUpdateClient().doCheckout(url, co, SVNRevision.UNDEFINED,
>> SVNRevision.HEAD, SVNDepth.UNKNOWN, true);
>> SVNCopySource[] sc =
Hello Mark,
SVNMoveClient was introduced in the 1.3.x version line in order to
workaround some limitations of the standard move. So there are (and
were) two ways to perform move - first is with the
SVNCopyClient.doCopy - this is a standard way which works exactly the
same way as the native client,
> Please consider using SVNCopyClient.doCopy(...) method with "isMove"
>parameter set to "true".
Thanks for the quick response, doCopy with isMove works correctly for me. Here
is the code that doesn't work:
SVNClientManager cm = ...;
cm.getUpdateClient().doCheckout(url, co, SVNRevision.UNDEFINED
Please consider using SVNCopyClient.doCopy(...) method with "isMove"
parameter set to "true".
Alexander Kitaev,
TMate Software,
http://subgit.com/ - Svn to Git Migration!
http://svnkit.com/ - Java [Sub]Versioning Library!
http://hg4j.com/ - Java Mercurial Library!
http://sqljet.com/ - Java SQLite
Hello,
What code do you use to perform the move?
Alexander Kitaev,
TMate Software,
http://subgit.com/ - Svn to Git Migration!
http://svnkit.com/ - Java [Sub]Versioning Library!
http://hg4j.com/ - Java Mercurial Library!
http://sqljet.com/ - Java SQLite Library!
On 6 April 2012 17:55, Mark Herm
I've been trying to post to the user list, but for some reason I keep getting
rejected. This morning I tried with rc5 and still the move operation does not
work properly. On the file system it looks like it works, but according to any
svn client it's a "missing" and an "unversioned" file. If y