This is with subversion client 1.5.5. I've been working with subversion for years on the same codebase and haven't run into this issue before. I did some digging around and found a few threads about the error above, but all were related to checking-out repositories, not merges, and none had a solution that I saw.
I've got a branch created from trunk that I'm trying to rebase with trunk. This is the first rebase I've run since the branch was created. Running the following command: $ svn merge --non-interactive https://path/to/trunk result in the following: svn: REPORT of '/repos/path/!svn/vcc/default': Could not read response body: Secure connection truncated (https://ourdomain.com) If I specify revision numbers from the creation of the branch to trunk's current revision: $ svn merge -r 40584:40659 --non-interactive https://path/to/trunk I get the same error, which is what I'd expect. If I back up a few revisions, no error is thrown and the merge occurs: $ svn merge -r 40584:40655 --non-interactive https://path/to/trunk What can I do to track down what's going wrong in the problematic revisions? Thanks!