I am trying to clean up this old svn repository. The project repo is very simple:
/trunk/
used to be the main branch, it has been untouched since rev 531./branches/Version2
is the new main branch, at rev 1300. It's essentially the master branch now; everyone works from this branch. It is merged up-to-date withtrunk
.
We want to reintegrate Version2
back to trunk
.
When I do:
svn merge --reintegrate ..\branches\Version2
I keep having problems. Either SVN crashes, or it errors with "truncated html response" after merging only a couple of the thousands of files.
Honestly, this is such a simple merge (literally naively replacing trunk
with Version2
), is there some other way to do this that works around the failing merge? Am I missing something obvious?