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

[script][repost] The merging added files bug

From: Santeri Hernejärvi <gray_at_gray.mine.nu>
Date: 2003-01-06 21:02:56 CET

I posted this a few weeks ago, but I guess it was forgotten due to
christmas and so on..

But anyway, did some more testing, as I've seen a few posts where more
people were bitten by this.

It only happens when doing a merge over dav with user & pass and
I seem to recall a bug with the auth-cache, maybe this has got something
to do with it.

IMHO this is a showstopper, as merging is pretty important.

.s

Script:
#!/bin/sh

REPOS=http://host:8080/svn/repos
USER=user
PASS=secret

svn --username $USER --password $PASS -m "create project" mkdir $REPOS/test
svn --username $USER --password $PASS -m "create trunk" mkdir
$REPOS/test/trunk
svn --username $USER --password $PASS -m "create branch" mkdir
$REPOS/test/branches

mkdir foo
svn co --username $USER --password $PASS $REPOS/test/trunk foo/trunk
cd foo/trunk
echo "file in trunk" > a
svn add a
echo "add a on trunk"
svn ci -m "added a"
svn up --username $USER --password $PASS
cd ..
cd ..

svn --username $USER --password $PASS -m "branched" cp
$REPOS/test/trunk/ $REPOS/test/branches/foo/
svn --username $USER --password $PASS co $REPOS/test/branches/foo/
foo/branch
cd foo/branch
echo "file added on branch" > b
svn add b
echo "add b on branch"
svn ci --username $USER --password $PASS -m "added b on branch"
svn up --username $USER --password $PASS
cd ..
cd ..

# crash
echo "merge"
svn merge --username $USER --password $PASS $REPOS/test/trunk/
$REPOS/test/branches/foo/ foo/trunk

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Jan 6 21:03:51 2003

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.