I have to work on two repositories and want to move one directory with code between the two while keeping revisionhistory.
I read a few questions here on SO, but am still not sure which way to go. Our Repositories are HUGE (files (orkingcopy) not including revisions>several GB), since everything is checked in (code +designdata + ...).
The solutions I have seen so far are:
- svnadmin dump + filter + import: not an option due to repository size
- svnsync: We already have data in the second repository (the repositories are huge already, I don't think merging them is a good idea, besides decidng that is not my job), and from what I gathered this requires the second repository to be empty.
- Third Party Solution: crashes repeatedly, because it can not delete a file because "another process hast the file opened" (enevthough i can remove the file via the os, and it gets created by the script)
Are there other solutions, approaches to this, or am I missing something about one of the solutions?