I am copying a repository by using svnsync and am receiving this error on the same revision every time.
Transmitting file data ...svnsync: REPORT of 'https://svn1.avlux.net/xxxxxx.net': Could not read response body: Secure connection truncated https://svn1.avlux.net)
It is a large revision and I don't have admin access to the server. Is there a way around this, even if it involves checking out and copying the revision manually?
Are you just trying to copy the repo once or are you trying to setup an ongoing mirroring scheme?
If it's the former you could let sync go until it fails, then do a diff between the revision it failed on and the previous revision and output that to a file. So if the rev that failed was 135 it would be something like this:
Then you can apply this patch file to a working copy of the new repo.
Then just commit the changes to that working copy and kick off svnsync again.
This is pretty hackish, but it might work.
NOTE: I didn't test any of the commands, there might be some syntax errors, but the general approach should work in theory.
I manage to resolved the issue by: - Update (Apache and svn to latest) - Turn on svn V2 protocol (apache config under the location) SVNAdvertiseV2Protocol On