Changes between Version 3 and Version 4 of GitRepository


Ignore:
Timestamp:
07/14/06 23:36:33 (7 years ago)
Author:
ydirson
Comment:

sample conf for single-repo branching approach

Legend:

Unmodified
Added
Removed
Modified
  • GitRepository

    v3 v4  
    1919 
    2020  This branching mode makes use of the '''parent-repo''' repository parameter.  Initialization of the branch's repository is done as a shared clone (using '''git-clone -s'''), so the parent branch's revisions are not needlessly duplicated. 
     21 
     22  {{{ 
     23[DEFAULT] 
     24patch-name-format=%(firstlogline)s 
     25remove-first-log-line=True 
     26root-directory = /tmp/test 
     27projects = trunk-pull, branch-pull 
     28 
     29[trunk-pull] 
     30source = cvsps:bigdiesel 
     31target = git:bigdiesel 
     32start-revision = INITIAL 
     33subdir = trunk 
     34 
     35[branch-pull] 
     36source = cvsps:bigdiesel 
     37target = git:bigdiesel-branch 
     38start-revision = bigloo-parser INITIAL 
     39subdir = bigloo-parser 
     40 
     41[git:bigdiesel] 
     42 
     43[git:bigdiesel-branch] 
     44parent-repo = ../trunk 
     45parent-rev = bigloo-parser_branchpoint 
     46  }}} 
    2147 
    2248 One single repository for all branches::