如何从 cvs 中的现有分支创建分支

发布于 2024-10-31 20:52:09 字数 123 浏览 2 评论 0原文

我有一个名为“Gem36”的分支,但我想从现有分支创建另一个名为“RM_Gem36”的分支。我怎样才能在 CVS 中做到这一点?

有没有其他方法可以从现有分支创建新分支“RM_Gem36”而不检查“Gem36”分支?

I have one branch named "Gem36" but I want to create another branch named "RM_Gem36" from the existing branch. How can I do that in CVS?

Is there any other way to create new branch "RM_Gem36"from existing branch without checking out the "Gem36" branch?

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

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

发布评论

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

评论(1

遗心遗梦遗幸福 2024-11-07 20:52:09

您可以使用以下命令签出 Gem36 并创建新分支:

$ cvs tag -b RM_Gem36

或者您可以尝试在不签出的情况下执行此操作:

$ cvs rtag -b -r Gem36 -- RM_Gem36“模块名称”

You can checkout Gem36 and create new branch with the following command:

$ cvs tag -b RM_Gem36

Or you can try to do this without checking out:

$ cvs rtag -b -r Gem36 -- RM_Gem36 "module_name"

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