How to solve "The node '...' was not found." in SVN
svn, version-control
Solution
I was hitting this error trying to use TortoiseSVN to update a working copy. In my case I managed to workaround by using the SVN commandline interface instead to `svn update`. Even after a successful commit I was still unable to update.
Very odd but a manual delete and update seemed to clean everything up. Both of my clients were based on Subversion 1.7.6.
Problem
I've merged two branches (trunk and a development branch). A folder has dissapeared. I'm working in command line and when trying to say `svn resolve --accept working src/path/to/folder` the terminal spits out `The node 'src/path/to/folder' was not found` After that it also spits out: `svn: E200009: Could not add all targets because some targets don't exist` `svn: E200009: Illegal target for the requested operation` How can I force SVN to accept this change? Thanks!