I have recently migrated my SVN repository from SERVER1 to SERVER2.
- installed SVN on SERVER2.
- used
svnrdump
utility to dump the repository. - used
svndump load
utility to load the dump file to new svn server.
I checked out a working copy WC from path http://SERVER1/project1/data
from SERVER1 svn.
Note one thing here:
- When I took dump, SVN revision on SERVER1 was 12345.
- When I checked out WC , SVN revision was 13456.
Now, using relocate from tortoise svn on windows
, I have relocated WC to SERVER2 svn to path http://SERVER2/project1/data
.
Relocation is successfull.
After this, I am trying to check-in
changes which were made from rev-12345 till rev-13456 to http://SERVER2/project1/data
.
But, here is what is happening:
- Commit operation does not show any files to be committed.
- Check for modification does not show any changes.
- SVN Update shows error 'No Such Revision: 13456'.
- I changed a file which existed on WC and on
http://SERVER2/project1/data
as well, and tried to commit it. Here also it gives 'No Such Revision: 13456'.
I was expecting that when WC at rev-13456 from SERVER1 will be relocated to http://SERVER2/project1/data
at rev-12345 from SERVER2, it will show all the differences which were made between these two revisions.
NOTE: I am trying above because SERVER1 will be shutdown in some time. As of now, both repositories exist. SERVER1 is still being used by people and SERVER2 is to be kept up-to-date with SERVER1.