On Nov 20, 2008, at 10:36 AM, Matthias Meixner wrote:
>
> subversion has a problem with renaming directories. If you run the
> following script it will print an error.
> If you uncomment the "svn update" commands, it will run without
> errors. This is strange as one else modifying the repository and,
> therefore, "svn update" should not be needed.
>
> Regards,
>
> Matthias Meixner
>
> ------------------------
>
> mkdir /tmp/repo
> svnadmin create /tmp/repo
>
> mkdir -p "foo/a1/b1"
> svn import foo file:///tmp/repo/foo -m "test"
> svn co file:///tmp/repo/foo bar
> cd bar
> svn mv "a1" "a2"
> svn mv "a2/b1" "a2/b2"
> svn ci -m "test"
>
> #svn update
> svn mv "a2/b2" "a2/b1"
> svn mv "a2" "a1"
> svn ci -m "test"
>
> #svn update
> svn mv "a1" "a2"
> svn mv "a2/b1" "a2/b2"
> svn ci -m "test"
>
> cd ..
> rm -rf foo bar /tmp/repo
>
http://subversion.tigris.org/issues/show_bug.cgi?id=2763
Is this the same issue? We reported this a while ago and it was
marked for '1.6-consider'. Nobody seems to have done anything with
it. You would think that if you do any sort of refactoring that people
would hit this bug more frequently. I'm wondering if/when one of the
developers are going to review the tracker items marked for 1.6 given
that a branch is coming soon.
-steve
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-11-20 18:13:45 CET