~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-24 06:48:13 UTC
  • mfrom: (2592.3.241 mbp-packrepo-as-knits)
  • Revision ID: pqm@pqm.ubuntu.com-20071024064813-wjcmv8ofabf6kdrb
Pack repositories!

Show diffs side-by-side

added added

removed removed

Lines of Context:
2478
2478
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
2479
2479
    hidden=True,
2480
2480
    )
 
2481
format_registry.register_metadir('experimental',
 
2482
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
 
2483
    help='New in XXX: Experimental format with data compatible with dirstate '
 
2484
        'format repositories. Cannot be read except with bzr.dev. '
 
2485
        'WARNING: This format is unstable and data in it will not be upgradable'
 
2486
        ' to release formats of bzr.',
 
2487
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2488
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2489
    hidden=True,
 
2490
    )
 
2491
format_registry.register_metadir('experimental-subtree',
 
2492
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
 
2493
    help='New in XXX: Experimental format with data compatible with '
 
2494
        'dirstate-with-subtree format repositories. Cannot be read except with'
 
2495
        ' bzr.dev. WARNING: This format is unstable and data in it will not be'
 
2496
        ' upgradable to release formats of bzr.',
 
2497
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2498
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2499
    hidden=True,
 
2500
    )
2481
2501
format_registry.set_default('dirstate-tags')