[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

svn ci drops files

From: Vladimir Prus <ghost_at_cs.msu.su>
Date: 2002-10-31 14:07:51 CET

Consider this interaction:

cd /tmp
rm -rf svn wc

svnadmin create svn
svn co file://localhost/tmp/svn wc
cd wc
touch 1
svn add 1
svn ci -m ""

mkdir libs
cd libs
svn co file://localhost/tmp/svn wc
cd wc
touch 2
svn add 2
cd ..
cd ..
echo "foo" > 1
svn st . libs/wc

# Output is:
#M 1
#? libs
#A libs/wc/2

svn ci . libs/wc -m ""

# Output is:
#Sending 1
#Transmitting file data .
#Committed revision 2

The problem is that I run "svn st" and "svn ci" with the same
set of arguments, but the second case drops "libs/wc" completely,
and does not commits "libs/wc/2".

This is surely bug. I belive it's caused by call to
svn_path_condense_targets in libsvn_client/commit.c:727, however, I don't
know what is the right solution. Any hints?

- Volodya

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Oct 31 14:07:50 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.