Navigation
Voterbox
Subversion Error / Fix
Fri, 2007-06-29 17:48 — drks
Ran into an issue with Subversion kicking back with the following error:
svn: Failed to add directory 'fakedir': object of the same name is already scheduled for addition
I found the fix from this Dev::Blog site. As described there, the fix is to revert the directory, and then update the tree.
svn revert fakedir
svn update
svn update
Hopefully that helps somebody else.