maitree
maitree

Reputation: 69

How can I create a branch from a existing branch in 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?

Upvotes: 3

Views: 3520

Answers (1)

Danil Krivopustov
Danil Krivopustov

Reputation: 232

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"

Upvotes: 3

Related Questions