问题描述
我意识到 Subversion 确实会导致一些不可靠的备份,这是第一次发生.我收到了上面的消息,不知道该怎么办.
I realize that Subversion can really cause some unreliable backup this is first time happening. I have the above message and don't know what to do.
我在 Visual Studio.我在另一个文件夹下移动一个目录.然后我重命名它.
I was in Visual Studio. I move a directory under an other folder. Then I rename it.
我该怎么办?我在网上搜了一下,好像没有解决办法.
What should I do ? I searched on Internet there doesn't seem any solution.
推荐答案
放入 shell.从顶层尝试 svn update
.如果可行,请执行 svn status
并查找标有C"(表示冲突")的文件.如果您看到这些,请为每个冲突的文件执行 svn resolve --accept working
.然后看看你是否能做到你所期望的.
Drop into the shell. Try svn update
from the top level. If that works, do an svn status
and look for files labelled with 'C' (for 'conflict'). If you see those, do a svn resolve --accept working <filename>
for each file in conflict. Then see if you can do what you expect.
这篇关于Subversion不可靠:“请更新过时的项目";的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!