You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Giulio Troccoli <gi...@mediatelgroup.co.uk> on 2011/10/18 10:06:33 UTC

Re: SVN detects deleted files [SOLVED]

On 24/08/11 12:15, Giulio Troccoli wrote:
> Recently I have starting experiencing something I always thought not 
> possible in Subversion.
>
> I work on Ubuntu with SVN 1.6.12. If I move or delete a file using the 
> OS Subverision marks the file as deleted rather than missing.
>
> $ rm foo.php
> $ svn st
> D       foo.php
>
> while I was expecting
>
> $ svn st
> !       foo.php
>
> Has this been introduced in 1.6.12? Is there a way to "switch it off" ?
>
> Thanks
> Giulio
>

In my case the problem was caused by the Netbeans Subversion plugin. 
Apparently it scans the source code directories and performs an 'svn rm' 
on any missing files. Once I have disabled the plugin (which I never use 
anyway, I prefer the CLI) I never experience the problem again.

Giulio