Am Samstag, 12. August 2006 16:52 schrieb Abdelrazak Younes:
> When I "svn update" trunk I always receive the following error:
> 
> Error: Working copy path 'src/frontends/qt4/Application.C' does not 
> exist in repository

Is that file mentioned in src/frontends/qt4/.svn/entries? It looks like 
this here:

<entry
   committed-rev="14284"
   name="Application.C"
   text-time="2006-07-04T15:57:11.000000Z"
   committed-date="2006-07-01T18:14:58.950715Z"
   checksum="0c7a6aa095274024da0244d5ac5274ac"
   last-author="bpeng"
   kind="file"
   prop-time="2006-07-04T15:57:11.000000Z"/>

If you can't find out what is wrong, do the following (commandline, I guess 
you know how to translate that to the GUI client you use):

svn diff src/frontends/qt4 > x.diff
mv src/frontends/qt4 src/frontends/qt4-old
svn update src/frontends/qt4
patch -p0 < x.diff

That will hopefully repair the svn data and get your local changes over via 
the patch file. Of course the last command may give you conflicts that 
you'd need to resolve manually. Then you can check whether all went OK and 
delete src/frontends/qt4-old if it does not contain any important files 
that are not in svn.


Georg

Reply via email to