Changes between Version 2 and Version 3 of ConfigurationFile


Ignore:
Timestamp:
04/11/09 15:28:17 (4 years ago)
Author:
lele
Comment:

Added my standard template

Legend:

Unmodified
Added
Removed
Modified
  • ConfigurationFile

    v2 v3  
    66 
    77For a detailed and up-to-date list of accepted options see the source:README file. 
     8 
     9== My standard config == 
     10 
     11For the impatient readers, here is my standard basic recipe: 
     12{{{ 
     13#!/usr/bin/env /usr/local/bin/tailor 
     14 
     15""" 
     16[DEFAULT] 
     17verbose = True 
     18 
     19[billiards] 
     20target = darcs:billiards 
     21root-directory = billiards 
     22source = cvs:billiards 
     23start-revision = INITIAL 
     24subdir = billiards 
     25 
     26[darcs:billiards] 
     27darcs-command = /usr/local/bin/darcs220-64bit 
     28init-options = --darcs-2 
     29split-initial-changeset-level = 2 
     30 
     31[cvs:billiards] 
     32repository = :pserver:anonymous@cvs.sv.gnu.org:/sources/billiards 
     33module = billiards 
     34""" 
     35}}} 
     36 
     37This will will create a "billiards" directory in the CWD  
     38(the "root-directory" option), containing tailor private stuff,  
     39and the real darcs target repository in a "billiards" subdir under  
     40that (as specified by "subdir" option, see also DisjunctWorkingDirectories).  
     41 
     42The two levels let me follow several branches (say, billiards-trunk 
     43and billiards-stable). In such a case, the file would contain  
     44multiple related tasks. 
     45 
     46I usually write a variant of this in (say) `billiards.tailor` 
     47, `chmod +x`, and re-execute at will. 
    848 
    949== Historical note, or what command line options are for ==