我需要填补 Subversion 存储库的空白
我遇到了我的主要颠覆机器死机的情况。我已经求助于一台旧机器。
我最新结账的是240版本,但是老机器最多只能到200版本? Subversion 不允许我签入,我需要帮助来解决这个问题。
I have a situation where my main subversion machine died. I have resorted to an older machine.
My latest checkout is version 240, but the old machine is only up to version 200? Subversion won't let me checkin and I need help fixing the gap.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试以下操作:
1) 将旧计算机中的版本 200 检出到新的工作副本中。
2) 使用 svn export 将旧工作副本中的更改复制到新工作副本。
3)在旧机器上检查as版本201的变化。
您将丢失版本 200 和 240 之间的历史记录,但除非您在其他地方有它们的备份,否则您可能无法避免这种情况。
You could try this:
1) Check out version 200 from the old machine into a new working copy.
2) Use
svn export
to copy the changes from your old working copy across to your new working copy.3) Check the changes in as version 201 on the old machine.
You'll lose the history between versions 200 and 240, but unless you have a backup of them somewhere else then you might not be able to avoid that.