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

Working copy corruption adding folders with permission problems

From: Andrew Thompson <andrew_at_fubra.com>
Date: Fri, 10 Oct 2008 13:11:04 +0100

Hi,

I have noticed that if you don't have permissions on an unversioned
subdirectory of a working copy, and you go and svn add it, it causes
problems with the parent folder.

The exact effect is that the parent folder thinks that the subfolder is
added, but the subfolder doesn't have its ".svn" metadata.

This is a bit of an annoyance, as it confuses subversion.

A scenario which causes this:

User A has groups (UserA, Users) default UserA
User B has groups (UserB, Users) default UserB

User A:
mkdir project
chmod g+s project
chgrp Users project

svn co http://repo/.. project
mkdir project/subfolder
chgrp UserA project/subfolder

User B:
svn add project/subfolder (fails, leaving "project" thinking subfolder
was added, and no "project/subfolder/.svn" metadata)

This is tested on Subversion 1.5.2, also I had this issue on Subversion
1.4.6

I found the only way to fix it after being done is for example:

chgrp Users project/subfolders
mv project/subfolder project/subfolder_tmp
svn revert project/subfolder
mv project/subfolder_tmp project/subfolder

It would be more ideal if subversion acted more atomically and would
rollback the add action on failure, as it has not fully completed.

-- 
Regards
Andrew Thompson
Fubra Limited
andrew_at_fubra.com
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-10-10 18:32:23 CEST

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.