svn 恢复到以前的版本

发布于 2024-11-19 07:51:20 字数 502 浏览 4 评论 0原文

我团队中的一位程序员不小心从 svn 中删除了一个文件夹。他没有恢复到以前的版本,而是手动创建整个目录,复制目录中的文件并提交。所以我们丢失了文件夹的历史记录。我们如何找回历史?

让我用例子解释一下,不要按语法

svn log directory
revision 4
revision 3
revision 2
revision 1
- svn remove directory(delete at head i.e revision 4)
- svn commit
- svn add directory (contains recursive directory structure with all the files of rev 4)
- svn commit
- svn log directory 
revision 1

Boom 我们丢失了所有修订历史记录,是的,我们可以通过 svn merge 获取修订历史记录。 现在我们想要返回到该目录的先前版本(修订版 2)。最好的方法是什么?

One of the programmer in my team deleted a folder from svn accidentally. Instead of reverting to previous version he manually creating the entire directory copied the files in the directory and committed. So we lost the history for folder. How do we get back the history ?

Let me explain by example, don't go by syntax

svn log directory
revision 4
revision 3
revision 2
revision 1
- svn remove directory(delete at head i.e revision 4)
- svn commit
- svn add directory (contains recursive directory structure with all the files of rev 4)
- svn commit
- svn log directory 
revision 1

Boom we lost all the revision history, yes we can get the revision history by svn merge.
Now we want to move back to a previous version (revision 2) of that directory. What is the best way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多孤肩上扛 2024-11-26 07:51:20
  1. Delete directory again, commit
  2. Perform svn copy http://server/path/to/dir@NNN dir (where NNN is the revision when the correct directory existed) and commit
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文