On Nov 24, 2008, at 05:15, Oliver Marshall wrote:
> We have SVN running on a linux box and use tortoise SVN on the
> clients (all windows). The users are reporting that one of the
> projects is causing an error when they try to download it this
> morning. The error is;
>
> In directory c:\working\project name\assets\foldername
> Error processing command ‘modify-wcprop’ in ‘c:\working\project name
> \assets\foldername’
> ‘c:\working\project name\assets\foldername\filename.jpg’ is not
> under version control
>
> If we do a cleanup we get the same error. We’ve even tried a new
> machine, installing tortoise and downloading the project on that
> only for the red ! to appear as well.
>
> Any ideas what the error means, and how something can get in to the
> project via SVN without it being under version control? More
> importantly, how can we resolve it ?
Are there two files filename.jpg whose names differ only in case,
e.g. filename.jpg and filename.JPG? If so, only one of those can
exist on a case-insensitive filesystem like you probably have. You
can use "svn ls" on that directory's repository URL to determine if
this is the problem. If so, you can use "svn mv" to rename one of
them (again by URL) so the name does not clash, or you can use "svn
rm" (by URL) to remove one of them.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-11-24 12:43:33 CET