Changeset 172 in tailor


Ignore:
Timestamp:
11/30/04 02:57:20 (8 years ago)
Author:
Mark Stosberg <mark@…>
Hash name:
20041130015720-20bb4-6d95fb493e62dcba0f1615a521c2a7e38cfa7a4a
Message:

Add README and improve docs

Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • tailor.py

    r171 r172  
    66# 
    77 
    8 """Keep in sync a tree with its "upstream" repository. 
     8"""Keep a tree in sync with its "upstream" repository of a different format.  
    99 
    10 This script makes it easier to keep the upstream changes merged in 
    11 a branch of a product, storing needed information such as the upstream 
    12 URI and revision in special properties on the branched directory. 
     10For more documentation, see the README file from the distribution. 
    1311 
    14 Examples:: 
    15  
    16   # Bootstrap a new taylored project, starting at upstream revision 10 
    17   $ tailor.py -b -s svn -R http://svn.server/Product -r 10 ~/darcs/MyProduct  
    18  
    19   # Bootstrap a new product, fetching from CVS and storing under SVN: this 
    20   # will create the directory "~/svnwc/cmfcore"; "~/svnwc" must be already 
    21   # under SVN. 
    22   $ tailor.py --source-kind cvs --target-kind svn --bootstrap \ 
    23               --repository :pserver:cvs.zope.org:/cvs-repository \ 
    24               --module CMF/CMFCore ~/svnwc/cmfcore 
    25    
    26   # Showing each command bootstrap a new DARCS repos in "~/darcs/cmftopic" 
    27   # under which the upstream module will be extracted as "CMFTopic" (ie, the 
    28   # last component of the module name). 
    29   $ tailor.py -D -b -R :pserver:anonymous@cvs.zope.org:/cvs-repository/ \ 
    30               -m CMF/CMFTopic ~/darcs/cmftopic 
    31                
    32   # Merge upstream changes since last update/bootstrap 
    33   $ tailor.py ~/svnwc/MyProduct 
    3412""" 
    3513 
Note: See TracChangeset for help on using the changeset viewer.