vote up 3 vote down star

How do I replace the HEAD of a CVS repository with a branch?

flag

2 Answers

vote up 5 vote down check

Check out this page, which has a pretty easy to follow walk through of branching and merging in CVS

http://kb.wisc.edu/middleware/page.php?id=4087

It also includes an example of replacing HEAD with a specified branch

Replacing One Branch With Another

Tag the end of your branch

cvs tag merge_NEW_BRANCH

Switch back to the branch you're replacing

To head:

cvs up -A

To branch:

cvs up -r OLD_BRANCH

Do the replace:

Replace head

cvs up -jHEAD -j NEW_BRANCH

Replace branch

cvs up -jOLD_BRANCH -j NEW_BRANCH

Commit changes and tag if you need to.

link|flag
vote up -2 vote down

We solved this with the following process. In this example, the module we're working on is test-module and the branch that is replacing the HEAD is test-branch.

  1. Get up-to-date copies of both test-branch and the HEAD:

    cd ~/tmp
    mkdir test-branch
    cd test-branch
    cvs co -r test-branch test-module
    cd ~/tmp
    mkdir head
    cd head
    cvs co test-module
    cd ~/tmp
    
  2. Use rsync to replace everything in our copy of the HEAD with the corresponding file from the branch and to delete files on the HEAD that no longer exist on the branch. In this command the -C switch tells rsync not to copy CVS related files and directories. Note the trailing / on test-branch/, it's important:

    rsync --progress --delete -rC test-branch/ head
    
  3. Now that the rsync is complete our copy of the trunk is the same as the branch, but we need to tell CVS about the files that need to be deleted. We can't run cvs up in our HEAD directory because that will restore the deleted files. We solved the problem by running the following script from within the head directory.:

    #!/bin/bash
    # Save the base working dir.
    basedir=`pwd`
    dirs=`find . -type d | sed /CVS/d`
    for dir in $dirs
    do
      if [ -d $dir/CVS ]
      then
        cd $dir
        files=`cvs -q status -l | \
          sed -n "s/File: no file \(.*\) *Status: Needs Checkout/\1/p"`
        if [ "$files" != "" ]
        then
          echo "Removing files $files."
          cvs -q rm $files
        fi
        cd $basedir
      fi
    done
    

4) Once that's done make sure everything works as expected and cvs commit your changes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.