You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Arkadiusz Miskiewicz <ar...@pld-linux.org> on 2003/11/17 01:10:48 UTC

not real-life problems

Hi

While I was playing a bit with subversion 0.33.0 I found some interesting 
things:

[misiek@arm ~/.SVN-PLD/test/foo]$ svn log | head -n 4
 ------------------------------------------------------------------------
r1356 | arekm | 2003-09-19 01:24:21 +0200 (Fri, 19 Sep 2003) | 1 line
test2
[misiek@arm ~/.SVN-PLD/test/foo]$ svn log " " | head -n 4
------------------------------------------------------------------------
r1704 | arekm | 2003-11-17 01:39:42 +0100 (Mon, 17 Nov 2003) | 1 line
- visible changelog

svn log in directory where filename named " " (one space) exists doesn't show 
changelog for it while it should.

Next:
When trying to add 'tab\ttab' directory (mkdir 'tab<ctrl+v><ctrl+i>tab') to 
subversion then it will theoretically finish properly but after fresh 
checkout instead of 'tab\ttab' I'm getting 'tab tab' (simple space). Same 
applies to 'new\nnew' (new line inside) directory (ctrl+v  ctrl+j).

Another one:
[misiek@arm ~/.SVN-PLD/test/foo]$ svn commit -m "- updated" " "
Sending
Transmitting file data .
Committed revision 1705.

It would be nicer to quote file name here so
Sending		` '

same applies to changelogs.

-- 
Arkadiusz Miƛkiewicz    CS at FoE, Wroclaw University of Technology
arekm.pld-linux.org AM2-6BONE, 1024/3DB19BBD, arekm(at)ircnet, PLD/Linux

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


Re: not real-life problems

Posted by kf...@collab.net.
Arkadiusz Miskiewicz <ar...@pld-linux.org> writes:
> While I was playing a bit with subversion 0.33.0 I found some interesting 
> things:
> 
> [misiek@arm ~/.SVN-PLD/test/foo]$ svn log | head -n 4
>  ------------------------------------------------------------------------
> r1356 | arekm | 2003-09-19 01:24:21 +0200 (Fri, 19 Sep 2003) | 1 line
> test2
> [misiek@arm ~/.SVN-PLD/test/foo]$ svn log " " | head -n 4
> ------------------------------------------------------------------------
> r1704 | arekm | 2003-11-17 01:39:42 +0100 (Mon, 17 Nov 2003) | 1 line
> - visible changelog
> 
> svn log in directory where filename named " " (one space) exists
> doesn't show changelog for it while it should.

Does this reproduce if you use 'svn log -rHEAD' both times instead?

I suspect what's going on is that you committed a change to " " in,
but didn't yet update your working copy.  By default, 'svn log' will
not show logs past the current revision of '.'.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org