svn出现错误svn: Failed to add directory ‘xxx’: an unversioned directory of the same name already

SVN Update更新SVN上面的东西,提示如下错误信息
svn: Failed to add directory ‘xxx’: an unversioned directory of the same name already exists
解决方案:新建一个工作空间,重新将SVN的项目down下来,但是不能是简单的右键然后点击“SVN checkput ”,而是要在在你工作空间的目录下, 按住shift 然后右键 ,选择“ 在此处打开命令行 ”,然后输入以下特定命令:
svn checkout --force https://192.16.1.8/svn/,当然,--force后面的目录要视你的文件夹而定

然后再在Android Studio中打开down下来的项目,就不会出现上述错误了。

猜你喜欢

转载自blog.csdn.net/K2514091675/article/details/77049819