Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

cvs

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?

like image 520
maitree Avatar asked Nov 28 '25 01:11

maitree


1 Answers

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"

like image 88
Danil Krivopustov Avatar answered Dec 02 '25 03:12

Danil Krivopustov



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!