Here is the scenario:
User 1
- create branches/X
- svn checkout branches/X to local machine
- modify file.txt
- commit changes
Another user, User 2,
- create branches/Y
- svn checkout branches/Y to his local machine
- merge branches/X to local machine (and thus merges file.txt into branches/Y)
- use svn diff to verify that the changes to file.txt in the local copy of branches/Y succeeded before committing the change.
Since svn diff can not compare the local working copy to that of a URL, step 4 of User 2 is impossible to do without first committing the change to branches/Y. But this defeats the whole purpose of verifying that a merge has produced the correct results before committing the merge changes.
I have googled for this, but have not found any usable solution. Only recommended solution is to check out branches/X so that svn can compare two paths. Since the merge changes have not been checked in yet, I can not use svn diff with two URL's.
It is impractical, not to mention time consuming and tedious, to checkout both branches/X and branches/Y just so that I can perform a diff.
Is there any way to compare the merged changes in a local working copy, which have not been committed yet, with those from the merge branch?
file.txt, you should commit Y before merging X to it, making it perfectly possible to just do asvn diff/svn diff -rHEADon the checkout. – Wrikken Jun 28 '12 at 21:11