Tortoise SVN differs between versions with different structure

I have code in subversion. Recently, the way to structure your code has been changed:

root / source-here

at

root / folder 1 / source-here
root / folder 2 / other stuff

I went ahead and made diff using Tortoise SVN, but I did not get what I expected. Basically, all files (modified and new) are displayed as added and all folders of the original structure are deleted.

I do not expect, but I do not mean that this is a mistake. I expected to see the changed and added files.

Any idea on how to do this from the repository itself?

I think I can check both turns and compare locally with something like WinMerge, but there should be a better way. I do not think this is a unique scenario.

Thank!

+3
2

, rev 10 , , :

svn diff http://server/svn/root/source-here@9 http://server/svn/root/folder1/source-here@10
+2

, ?

svn diff {banch1}/root/source-here {branch2}/root/folder1/source-here

0

Source: https://habr.com/ru/post/1741985/


All Articles