If you have a check from the repository, you can use the ^ (carriage, find it in the manual ) notation to refer to the repo root:
svn diff --old ^/branches/0.4.x --new ^/trunk
This works with Subversion 1.6.
If you have older subversion or no convenient repo checker, you can use absolute paths as described in the original redbook :
svn diff --old http://.../repo/branches/0.4.x --new http://.../repo/trunk/
should give you the answer you are looking for.
Replace http://.../repo/ actual URL of your repository.
David Schmitt Feb 12 '10 at 9:52 2010-02-12 09:52
source share