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!!

没有正确的解决方案

其他提示

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)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top