~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

mergeĀ formatĀ 1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
3047
3047
    branch_format='bzrlib.branch.BzrBranchFormat7',
3048
3048
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3049
3049
    )
 
3050
format_registry.register_metadir('1.9',
 
3051
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
 
3052
    help='A branch and pack based repository that uses btree indexes. ',
 
3053
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3054
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3055
    )
 
3056
format_registry.register_metadir('1.9-rich-root',
 
3057
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
 
3058
    help='A branch and pack based repository that uses btree indexes '
 
3059
         'and rich root data (needed for bzr-svn). ',
 
3060
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3061
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3062
    )
3050
3063
# The following two formats should always just be aliases.
3051
3064
format_registry.register_metadir('development',
3052
3065
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2',