Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/spring-boot/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Macos SVN存储库不再出现在SmartSVN中,表示如果我提交更改,UUID就不同了_Macos_Svn_Repository_Smartsvn - Fatal编程技术网

Macos SVN存储库不再出现在SmartSVN中,表示如果我提交更改,UUID就不同了

Macos SVN存储库不再出现在SmartSVN中,表示如果我提交更改,UUID就不同了,macos,svn,repository,smartsvn,Macos,Svn,Repository,Smartsvn,我有这个问题已经好几天了。出事了。我无法提交到我的SVN存储库,如果我这样做,我会得到这个错误 提交:存储库UUID“49a14762-82d3-4890-9de1-d63348e82a44”不存在 匹配预期UUID“c8d17b73-fbff-4d6e-b104-923b936b9cd2” 我使用命令行(终端)命令,但无法解决问题。如果再次尝试签出存储库,我在那里看不到任何内容。过去有很多项目,但现在它是空的 我遗漏了什么,如何解决这个问题?我使用的是MacOxMavericks。我刚刚下载

我有这个问题已经好几天了。出事了。我无法提交到我的SVN存储库,如果我这样做,我会得到这个错误

提交:存储库UUID“49a14762-82d3-4890-9de1-d63348e82a44”不存在 匹配预期UUID“c8d17b73-fbff-4d6e-b104-923b936b9cd2”

我使用命令行(终端)命令,但无法解决问题。如果再次尝试签出存储库,我在那里看不到任何内容。过去有很多项目,但现在它是空的


我遗漏了什么,如何解决这个问题?我使用的是MacOxMavericks。我刚刚下载了SmartSVN 8.5,但问题仍然存在。

我最终备份了我的工作文件夹。已从文件夹中删除所有.svn和.ds_存储以及其他.project和隐藏文件。在SmartSVN中创建一个新的存储库,并将其从我的(已清理的)工作副本导入。现在一切正常。不幸的是,我无法解决实际问题。问题最有可能是在安装EclipseSVN插件时引起的

这是清理mac上的.svn和隐藏文件的方法

find . -name '*.DS_Store' -type f -delete  #run this in working folder.
find . -name '*.svn' -type f -delete
或者,使用以下命令在Finder中显示隐藏的文件,然后通过选择它将其删除

defaults write com.apple.finder AppleShowAllFiles TRUE