代码改变世界

svn status '~'

2012-11-21 17:35  -king  阅读(2623)  评论(0编辑  收藏  举报

svn status 出现'~'时 提交会显示错误 xx/xx.svn' containing working copy admin area is missing

’~’Item is versioned as one kind of object (file, directory, link), but has been replaced by different kind of object.

解决办法:先把'~'状态的文件夹改为其他名字 删除文件夹并提交 在把名字改回来 添加并提交 

1. mv Test Test1 2. svn remove Test 3. svn commit -m "Removed Test" 4. mv Test1 Test 5. svn add Test 6. svn commit -m "Added Test"

http://stackoverflow.com/questions/853405/what-does-the-subversion-status-symbol-mean