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

bug

From: Michael Price <mprice_at_atl.lmco.com>
Date: 2002-12-02 02:28:12 CET

Anyone else seeing this?

$ ~/tmp> dir
$ ~/tmp> svnadmin create repo
$ ~/tmp> svn co file:///`pwd`/repo wc
Checked out revision 0.
$ ~/tmp> dir
total 4
drwx------ 7 mprice mprice 512 Dec 1 20:21 repo/
drwx------ 3 mprice mprice 512 Dec 1 20:22 wc/
$ ~/tmp> cd wc
$ ~/tmp/wc> dir
$ ~/tmp/wc> svn mkdir dir1
A dir1
$ ~/tmp/wc> svn commit -m "new dir1"
Adding dir1

Committed revision 1.
$ ~/tmp/wc> cd dir1
$ ~/tmp/wc/dir1> echo "file" > file1
$ ~/tmp/wc/dir1> svn add file1
A file1
$ ~/tmp/wc/dir1> svn commit -m "file1"
Adding dir1/file1
Transmitting file data .
Committed revision 2.
$ ~/tmp/wc/dir1> echo "other" > file2
$ ~/tmp/wc/dir1> svn add file2
A file2
$ ~/tmp/wc/dir1> svn rm file1
D file1
$ ~/tmp/wc/dir1> svn commit -m "remove file1 - add file2"
Deleting dir1/file1
Adding dir1/file2
Transmitting file data .
Committed revision 3.
$ ~/tmp/wc/dir1> dir
total 2
-rw------- 1 mprice mprice 6 Dec 1 20:23 file2
$ ~/tmp/wc/dir1> cd ..
$ ~/tmp/wc> dir
total 2
drwx------ 3 mprice mprice 512 Dec 1 20:24 dir1/
$ ~/tmp/wc> svn mkdir dir2
A dir2
$ ~/tmp/wc> svn commit -m "new dir2"
Adding dir2

Committed revision 4.
$ ~/tmp/wc> svn mv dir1 dir2
A dir2/dir1
D dir1/file2
D dir1
$ ~/tmp/wc> svn commit -m "mv dir1 dir2"
Deleting dir1
svn: Transaction is out of date
svn: Commit failed (details follow):
svn: out of date: `dir1' in txn `5'

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Dec 2 02:30:51 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.