Difference between revisions of "HowToCWS"

From Apache OpenOffice Wiki
Jump to: navigation, search
Line 1: Line 1:
= How To CWS using Subversion =
+
= .. 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.
Line 13: Line 13:
 
  4  echo // Replace this with hacking| cat sc/source/filter/excel/biffdump.cxx -
 
  4  echo // Replace this with hacking| cat sc/source/filter/excel/biffdump.cxx -
 
  5  cwsresync -m m181 sc
 
  5  cwsresync -m m181 sc
  6  mkdir /tmp/__analyze_$(CWS_WORK_STAMP); cd /tmp/__analyze_$(CWS_WORK_STAMP)
+
  6 cwsresync -c sc
  7 cwsanalyze sc
+
7  cwsresync -l m181
 +
8 mkdir /tmp/__analyze_$(CWS_WORK_STAMP); cd /tmp/__analyze_$(CWS_WORK_STAMP)
 +
  9 cwsanalyze sc
 +
 
 +
Comments:
 +
# Required for correct operation of the cws* tools
 +
# Note the '-s' flag that tags the CWS as subversion enabled
 +
# 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.
 +
#
 +
# cwsresync supports in place resync using Subversion. You can always revert or modify the changes before commit
 +
#
 +
#
 +
# Pick any temp dir you want
 +
# 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 ===
 
=== Setup for existing CWS users ===

Revision as of 11:10, 15 August 2006

.. 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