开发者

How can I create a branch from a existing branch in cvs

开发者 https://www.devze.com 2023-02-23 07:56 出处:网络
I have one branch nam开发者_Go百科ed \"Gem36\" but I want to create another branch named \"RM_Gem36\" from the existing branch. How can I do that in CVS?

I have one branch nam开发者_Go百科ed "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?


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"

0

精彩评论

暂无评论...
验证码 换一张
取 消