This tree contains the TI-RTOS tree. BUILD o from Linux workstation: from top-level of tree type: /* Ensure that you're on the master branch */ git checkout master /* * Grab contributions by user1, user2, ... to * zumaprod-X01 (assuming zumaprod-X00 is the latest * current release. */ ggentree -o $TREES/zumaprod/zumaprod-X01 $TREES/zumaprod/zumaprod.git /path/to/user1/zumaprod/zumaprod-X01_a0123456 /path/to/user2/zumaprod/zumaprod-X01_a0123457 ... /* cd into the new tree */ cd $TREES/zumaprod/zumaprod-X01 /* if more than one committer */ /* Ensure that you're on the master branch */ git checkout master /* list all the user branches and their names */ git branch /* * Merge user branches into master branch. Resolve * conflicts if necessary. This merges user commits onto * the ggentree master branch. */ git merge zumaprod-X01_a0123456 git merge zumaprod-X01_a0123457 /* else (only one committer) */ /* auto-merged by ggentree, no action required */ /* endif */ ... /* * Build tree */ SM-MAKE .clean .all-files >& Make.log & /* update README and commit README and ident.c */ /* * use "tail -f Make.log" to monitor build progress * Make sure Make.log is satisfactory */ /* Release the git tree */ /* use 'kw' or 'jv' or 'ademars' as user_id */ greltree -u user_id -m "Weekly Release, etc" =========================================================================== See the gitweb log for the list of changes: http://gitweb.sanb.design.ti.com/apache/cgi-bin/gitweb.cgi?p=zumaprod.git/.git;a=shortlog