svn move allows to move a file while retaining traceability of changes. Now I have the following scenario:
- svn copy dir1/file1 dir1/file2
- modified dir1/file1 and dir1/file2
- svn move dir1/file1 to dir2/file1
Subversion tells me it doesn't move the file unless I use the --force
option, because there are changes to dir1/file1. Suppose I do the forced move, what consequences does that have on the traceability of changes to file1 and/or file2?