如何在 CVS 中恢复(回滚)到已提交文件的早期版本
我们以 CVS 中提交的单个文件为例,其历史记录如下。
测试.cpp
修订版 1.1
修订版 1.2
rev 1.3
如何恢复到 rev 1.2,放弃 1.3 中的更改,然后继续从该点开始进行修改?
Let's take for example a single file committed in CVS with the following history.
test.cpp
rev 1.1
rev 1.2
rev 1.3
How do I revert to rev 1.2 discarding the changes in 1.3 and then continue to make modification from that point on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
cvs更新-j 1.3 -j 1.2 test.cpp
cvs update -j 1.3 -j 1.2 test.cpp