Difference between revisions of "HowToCWS"

From Apache OpenOffice Wiki
Jump to: navigation, search
Line 1: Line 1:
= .. using Subversion =
+
= HowToCWS using Subversion =
  
 
'''NB:''' This page is about working with the OpenOffice.org ChildWorkSpace (CWS) commit process using Subversion as the version control system. The workflow described here is used by many community developers but some Sun engineers might find it interesting as well.
 
'''NB:''' This page is about working with the OpenOffice.org ChildWorkSpace (CWS) commit process using Subversion as the version control system. The workflow described here is used by many community developers but some Sun engineers might find it interesting as well.

Revision as of 11:10, 15 August 2006

HowToCWS using Subversion

NB: This page is about working with the OpenOffice.org ChildWorkSpace (CWS) commit process using Subversion as the version control system. The workflow described here is used by many community developers but some Sun engineers might find it interesting as well.

Quickstart

Workflow

Prerquisites: You have your CWS system setup for Subversion support and a MixedTree without the sc module.

1  export CWS_WORK_STAMP=<your_username>svntest01
2  cwscreate -s SRC680 m180 $CWS_WORK_STAMP
3  cwsadd -c sc
4  echo // Replace this with hacking| cat sc/source/filter/excel/biffdump.cxx -
5  cwsresync -m m181 sc
6  cwsresync -c sc
7  cwsresync -l m181
8  mkdir /tmp/__analyze_$(CWS_WORK_STAMP); cd /tmp/__analyze_$(CWS_WORK_STAMP)
9  cwsanalyze sc

Comments:

  1. Required for correct operation of the cws* tools
  2. Note the '-s' flag that tags the CWS as subversion enabled
  3. The '-c' flag checks out that module into your tree. If you already had a subversion 'sc' directory you could omit the flag and use the faster 'switch' operation.
  4. cwsresync supports in place resync using Subversion. You can always revert or modify the changes before commit
  5. Pick any temp dir you want
  6. cwsanalyze (and cwsintegrate) extract the CWS changes and analyze/integrate against the CVS head. This is the point where a Subversion CWS is merged back into the upstreams CVS repository.

Setup for existing CWS users

  1. Install Subversion from the Subversion site or use the one included with your distribution. Warning: Cygwin SVN is broken and will not work!.
  2. Add these lines to your .cwsrc:
# Subversion server root
SVN_SERVER_ROOT=https://ooo-svn.osuosl.org
Personal tools