Question

We had ecently migrated our SVN repo to a new locaion. I want to check if the migration is done correctly. When I try

svn diff --old=OLD_URL --new=NEW_URL

I am getting the following error

OLD_URL isn't in the same repository as the NEW_URL

Please help!!

No correct solution

OTHER TIPS

SVN will show you the diff based on the deltas of the file you've specified. When files are in different repos there is no delta between them - they are completely different files as far as its concerned.

Export HEAD of both repositories and then use any diff tool instead (I like Winmerge but Beyond Compare is recommended)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top