Hi all,
I have a problem with the following sequence:
svn add, svn delete, svn add using subversion 1.1.4-2 on debian sarge.
As you can see in the following transcript a file was added at revision
127, deleted at revision 134 and added at revision 137.
I'm not able to get the difference between revision 127 and 137
using
svn diff -r 127:137 filename.txt
but I can get the difference for the whole parent directory using
svn diff -r 127:137 .
Additionally svn log doesn't show the full story of the file but only
the logs for the newest.
Other operation like merge may be affected.
May be this issue will be solved with subversion 1.4 like the similar
I found here:
http://svn.haxx.se/dev/archive-2006-03/0918.shtml
Thanks in Advance for your suggestions,
Daniele
$ svn ls -r 126 . | grep filename.txt
$ svn ls -r 127 . | grep filename.txt
filename.txt
$ svn ls -r 133 . | grep filename.txt
filename.txt
$ svn ls -r 134 . | grep filename.txt
$ svn ls -r 136 . | grep filename.txt
$ svn ls -r 137 . | grep filename.txt
filename.txt
$ svn diff -r 127:137 filename.txt
svn: Unable to find repository location for 'filename.txt' in revision
127
$ svn diff -r 127:137 . | diffstat | grep filename.txt
filename.txt | 4 ++--
$ svn log filename.txt
------------------------------------------------------------------------
r137 | XXX | 2006-06-09 14:38:52 +0200 (ven, 09 giu 2006) | 1 line
XXX
------------------------------------------------------------------------
$ svn log -r 127 filename.txt
------------------------------------------------------------------------
r127 | XXX | 2006-06-09 08:54:05 +0200 (ven, 09 giu 2006) | 1 line
XXXX
------------------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Jun 9 16:53:43 2006