Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN error when trying a commit

Tags:

ankhsvn

I have a project under source control and anytime I try to check in one of the solutions I get this error message enter image description here I've not got a project GlassButtons so I have no idea what SVN is looking for.

like image 638
PsychoCoder Avatar asked Aug 16 '26 11:08

PsychoCoder


1 Answers

A possible reason is the following:
There once was a folder GlassButtons that has been added to your local working copy (SVN Add) and deleted afterwards from the disk. This will lead to the situation you encounter: AnkhSVN tries to commit that folder and therefore wants to read it from the disk, but it doesn't exist anymore, so it gives this error.
The following should help you:

  • Install TortoiseSVN
  • Right click on the folder ...\Helpers\Controls
  • Choose SVN Commit
  • In the list, uncheck everything
  • In the list, look for the folder GlassButtons. It should have the "Text status" "missing"
  • Check it
  • Click OK

Now your working copy should be fine again.

like image 110
Daniel Hilgarth Avatar answered Aug 18 '26 04:08

Daniel Hilgarth