[Zope-Coders] checking in on a branch?

Brian Lloyd brian@zope.com
Thu, 4 Oct 2001 10:19:41 -0400


> > 2: I created a branch to work on
> > 
> > cd Zope
> > cvs tag -b stevea_zcatalog_api_cruft_cleanup-branch
> > 
> > 3: I changed the file
> > 
> > Was I supposed to check out the branch between steps 2 and 3?
> 
> Yep.  Step 2 creates the branch, but doesn't affect your sandbox.

right - you want to do:

  - (create the branch)
    cvs tag -b stevea_zcatalog_api_cruft_cleanup-branch

  - (move the sandbox onto the branch)
    cvs up -d -P -r stevea_zcatalog_api_cruft_cleanup-branch

-Brian