[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: Query about cvs...



On Tue, Mar 21, 2000 at 12:48:33PM +0530, Kedar Patankar wrote:
> Hi all,
> 
> 	Does anyone here know how to put a label (tag) on a branch in CVS?
> e.g. I have a module called foo, and I make release 1.0 of foo. Now I
> continue development on foo and am in flux for 1.1.
> 	I also have patches for 1.0 of foo, and they are on a branch
> foo_patches_1_0. But I can have several releases of the patches
> themselves.
> 	In essence how do I tag foo_patches_1_0_rel1, foo_patches_1_0_rel2 
> etc on the foo_patches_1_0 branch?

Checkout foo_patches_1_0 branch. Apply the patches for rel1. Do

cvs tag foo_patches_1_0_rel1 .

Apply the patches for rel2. Do

cvs tag foo_patches_1_0_rel1 .

	-Arun

PS: I'd really name the branch release-1.0 and call the sub releases, 1.0.1
etc.