[Python-Dev] Need advice: cloning python cvs for CE project

Martin v. Loewis martin@v.loewis.de
24 Sep 2002 01:02:40 +0200


"Brad Clements" <bkc@murkworks.com> writes:

> Can someone who understands the mechanics of how this works explain it? 

1. Export a "blank tree"

cvs -d :pserver:anonymous@cvs.python.sourceforge.net:/cvsroot/python
export python


2. Import it into a fresh repository

cvs -d :ext:developername@cvs.python.sourceforge.net:/cvsroot/python
import pythonce Pythonlabs cvs_from_020924

3. Make a sandbox for your module

cvs -d :pserver:anonymous@cvs.python.sourceforge.net:/cvsroot/python
export -d MyPythonCE pythonce

Then, whenever you incorporate another Pythonlabs snapshot, import it
again. cvs will tell you the command to join your tree with the
imported tree when the import is complete.

HTH,
Martin