Hi again folks !
Here is a scenario :
- I have a master repository in the path /Svn-Repository
- I do 2 backups repos respectively in /SvnBackup and /SvnBackup2 using the
following command :
svnadmin dump /Svn-Repository/ | svnadmin load --force-uuid /SvnBackup/
- Then, I do again "svnadmin dump" commands on each into text file :
svnadmin dump /Svn-Repository > dump1
svnadmin dump /SvnBackup > dump2
svnadmin dump /SvnBackup 2 > dump3
- Then, I do diffs to verify integrity, and I found that dump of the master
repository is not in the same order then the restore one :
diff dump2 dump3 (compare Ok)
diff dump1 dump2 (compare failed)
diff dump1 dump3 (compare failed)
All the revisions are the same, but they are not in the same order in the
master repos,
Is there some things I should do to make the revisions appearing in the same
order in the master dump ?
If not, can we add a switch to make sure "svnadmin dump" order revisions
always in the same way ?
Thanks !
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Jun 15 03:11:38 2003