If you ever get trapped into not being able to update your working directory/file from the repository
Then just type in
sudo svn update . -R --force
This will force svn to update your working directory recursively. Take a note of . (=period) which is assuming that you are at the top of your working directory. So be aware to use the -R.
Don’t forget to comment..healthy ones ;-).