我的代码已被 CM 回滚,下一步如何?
我们的配置管理器认为我上次签入破坏了构建并回滚了我签入的一堆文件。在我修复它或表明损坏不是由我造成的之后,恢复我的代码的正确方法是什么进入子版本?
我是否执行 svn 更新并重新签入代码或使用 SVN 命令返回到我最初签入的版本?
Our Configuration Manager thinks that my last check in broke the build and rolled back bunch of files I had checked in. After I ether fix it or show that the breakage wasn't caused by me, what is the right way to get my code back into SubVersion?
Do I do an svn update and re-check in the code or something with SVN commands to go back to the version I had originally checked in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不需要重新签入文件。您可以通过以下方式返回到您提交的修订版:
$ svn merge --revision HEAD:xxx
其中 xxx 是您上次更改的修订版。
No, it is not necessary to re-check in the files. You can go back to the revision you had committed by:
$ svn merge --revision HEAD:xxx
where xxx is the revision with your last changes.