从 svn 中删除最新版本

发布于 2024-12-08 10:01:58 字数 278 浏览 0 评论 0原文

可能的重复:
Subversion:撤回意外签入

有什么方法可以从 SVN 中删除最新版本吗?

我最新的 SVN 版本缺少几个文件,因此我想切换到以前的版本并从那里继续。这可能吗?任何好的建议都值得赞赏。谢谢。

Possible Duplicate:
Subversion: Retract Accidental Checkin

Is there any way to delete the latest revision from SVN?

My latest SVNrevision has several files missing so I would like to switch to my previous revision and carry on from there. Is that possible? Any good suggestions are appreciated. Thanks.

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

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

发布评论

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

评论(2

无人问我粥可暖 2024-12-15 10:01:58

您无法删除修订版本,但可以使用反向合并“撤消”它。下面是一个示例:

cd working/copy
svn merge -c -13 ^/repo/trunk
svn commit -m "Undoing change committed in r13."

请参阅撤消更改 在文档中。

You cannot delete the revision, but you can "undo" it using reverse merge. Here's an example:

cd working/copy
svn merge -c -13 ^/repo/trunk
svn commit -m "Undoing change committed in r13."

See Undoing Changes in the docs.

痴意少年 2024-12-15 10:01:58

使用 svn 修订历史记录,将文件夹恢复到以前的修订(必需),然后提交更改。这应该将您带到所需的代码状态

using svn revision history, revert the folder back to previous revision (required) and then commit the changes. This should take you to your required status of the code

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文