svn 恢复到以前的版本
我团队中的一位程序员不小心从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
svn copy http://server/path/to/dir@NNN< /a> dir
(其中 NNN 是正确目录存在时的修订版本)并提交svn copy http://server/path/to/dir@NNN dir
(where NNN is the revision when the correct directory existed) and commit