如何从 cvs 中的现有分支创建分支
我有一个名为“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下命令签出 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"