Problem
I was getting the following error after trying to update a SVN repository.
- PROPFIND of '/': 405 Method Not Allowed
And had no idea what it meant. I read on the internet that could be from trying to checkout a file that is none existent. The interesting thing is that I was just doing an update (svn update).
Solution:
- svn cleanup
That solved my problem immediately. After running the cleanup command I was able to make my update.
Comments