Blog

svn: The repository at ‘‘ has uuid ‘‘, but the WC has ‘

If you’ve ever tried to switch your current working copy to a new SVN URL with ‘svn switch –relocate [old_repo] [new_repo]‘ command you may run into an error message similar to this: svn: The repository at ‘[new_repo]‘ has uuid ‘[new_uuid]‘, but the WC has ‘[old_uuid]‘ The reason for this is that Subversion expects the same [...]

Continue reading →

svn: Failed to add directory ‘foo/foo’: an unversioned directory of the same name already exists

Ever gotten this Subversion checkout/update operation error message? svn: Failed to add directory ‘foo/foo’: an unversioned directory of the same name already exists You can fix this problem by applying an extra option of “–force” to the SVN’s checkout/update command.  This will mark the folder in question as updated and the subfolder files as versioned [...]

Continue reading →