13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
"""BzrDir logic. The BzrDir is the basic control directory used by bzr.
131
137
"""Give an error or warning on old formats.
133
:param format: may be any kind of format - workingtree, branch,
139
:param format: may be any kind of format - workingtree, branch,
136
:param allow_unsupported: If true, allow opening
137
formats that are strongly deprecated, and which may
142
:param allow_unsupported: If true, allow opening
143
formats that are strongly deprecated, and which may
138
144
have limited functionality.
140
146
:param recommend_upgrade: If true (default), warn
217
225
force_new_repo, stacked_on, self.root_transport.base,
218
226
require_stacking=require_stacking)
219
227
make_working_trees = local_repo.make_working_trees()
220
result_repo = repository_policy.acquire_repository(
228
result_repo, is_new_repo = repository_policy.acquire_repository(
221
229
make_working_trees, local_repo.is_shared())
222
230
if not require_stacking and repository_policy._require_stacking:
223
231
require_stacking = True
224
232
result._format.require_stacking()
225
result_repo.fetch(local_repo, revision_id=revision_id)
233
if is_new_repo and not require_stacking and revision_id is not None:
234
fetch_spec = graph.PendingAncestryResult(
235
[revision_id], local_repo)
236
result_repo.fetch(local_repo, fetch_spec=fetch_spec)
238
result_repo.fetch(local_repo, revision_id=revision_id)
227
240
result_repo = None
228
241
# 1 if there is a branch present
229
242
# make sure its content is available in the target repository
231
244
if local_branch is not None:
232
result_branch = local_branch.clone(result, revision_id=revision_id)
233
if repository_policy is not None:
234
repository_policy.configure_branch(result_branch)
235
if result_repo is None or result_repo.make_working_trees():
245
result_branch = local_branch.clone(result, revision_id=revision_id,
246
repository_policy=repository_policy)
248
# Cheaper to check if the target is not local, than to try making
250
result.root_transport.local_abspath('.')
251
if result_repo is None or result_repo.make_working_trees():
237
252
self.open_workingtree().clone(result)
238
except (errors.NoWorkingTree, errors.NotLocalUrl):
253
except (errors.NoWorkingTree, errors.NotLocalUrl):
242
257
# TODO: This should be given a Transport, and should chdir up; otherwise
249
264
def create(cls, base, format=None, possible_transports=None):
250
265
"""Create a new BzrDir at the url 'base'.
252
267
:param format: If supplied, the format of branch to create. If not
253
268
supplied, the default is used.
254
:param possible_transports: If supplied, a list of transports that
269
:param possible_transports: If supplied, a list of transports that
255
270
can be reused to share a remote connection.
257
272
if cls is not BzrDir:
460
475
The created Branch object is returned.
461
476
If a working tree cannot be made due to base not being a file:// url,
462
no error is raised unless force_new_tree is True, in which case no
477
no error is raised unless force_new_tree is True, in which case no
463
478
data is created on disk and NotLocalUrl is raised.
465
480
:param base: The URL to create the branch at.
466
481
:param force_new_repo: If True a new repository is always created.
467
:param force_new_tree: If True or False force creation of a tree or
482
:param force_new_tree: If True or False force creation of a tree or
468
483
prevent such creation respectively.
469
484
:param format: Override for the bzrdir format to create.
470
485
:param possible_transports: An optional reusable transports list.
709
724
IncompatibleFormat if the repository format they are given has
710
725
a format string, and vice versa.
712
If repository_format is None, the transport is returned with no
727
If repository_format is None, the transport is returned with no
713
728
checking. If it is not None, then the returned transport is
714
729
guaranteed to point to an existing directory ready for use.
716
731
raise NotImplementedError(self.get_repository_transport)
718
733
def get_workingtree_transport(self, tree_format):
719
734
"""Get the transport for use by workingtree format in this BzrDir.
758
773
this in the future - for instance to make bzr talk with svn working
761
# this might be better on the BzrDirFormat class because it refers to
762
# all the possible bzrdir disk formats.
763
# This method is tested via the workingtree is_control_filename tests-
776
# this might be better on the BzrDirFormat class because it refers to
777
# all the possible bzrdir disk formats.
778
# This method is tested via the workingtree is_control_filename tests-
764
779
# it was extracted from WorkingTree.is_control_filename. If the method's
765
780
# contract is extended beyond the current trivial implementation, please
766
781
# add new tests for it to the appropriate place.
824
841
BzrDir._check_supported(format, _unsupported)
825
842
return format.open(transport, _found=True)
827
def open_branch(self, unsupported=False):
844
def open_branch(self, unsupported=False, ignore_fallbacks=False):
828
845
"""Open the branch object at this BzrDir if one is present.
830
847
If unsupported is True, then no longer supported branch formats can
833
850
TODO: static convenience version of this?
835
852
raise NotImplementedError(self.open_branch)
853
870
Basically we keep looking up until we find the control directory or
854
871
run into the root. If there isn't one, raises NotBranchError.
855
If there is one and it is either an unrecognised format or an unsupported
872
If there is one and it is either an unrecognised format or an unsupported
856
873
format, UnknownFormatError or UnsupportedFormatError are raised.
857
874
If there is one, it is returned, along with the unused portion of url.
859
:return: The BzrDir that contains the path, and a Unicode path
876
:return: The BzrDir that contains the path, and a Unicode path
860
877
for the rest of the URL.
862
879
# this gets the normalised url back. I.e. '.' -> the full path.
987
1004
This will still raise an exception if the bzrdir has a workingtree that
988
1005
is remote & inaccessible.
990
1007
Note: if you're going to open the working tree, you should just go ahead
991
and try, and not ask permission first. (This method just opens the
992
workingtree and discards it, and that's somewhat expensive.)
1008
and try, and not ask permission first. (This method just opens the
1009
workingtree and discards it, and that's somewhat expensive.)
995
1012
self.open_workingtree(recommend_upgrade=False)
1112
1129
source_repository = None
1113
1130
repository_policy = result.determine_repository_policy(
1114
1131
force_new_repo, stacked_branch_url, require_stacking=stacked)
1115
result_repo = repository_policy.acquire_repository()
1132
result_repo, is_new_repo = repository_policy.acquire_repository()
1133
if is_new_repo and revision_id is not None and not stacked:
1134
fetch_spec = graph.PendingAncestryResult(
1135
[revision_id], source_repository)
1116
1138
if source_repository is not None:
1117
1139
# Fetch while stacked to prevent unstacked fetch from
1118
1140
# Branch.sprout.
1119
result_repo.fetch(source_repository, revision_id=revision_id)
1141
if fetch_spec is None:
1142
result_repo.fetch(source_repository, revision_id=revision_id)
1144
result_repo.fetch(source_repository, fetch_spec=fetch_spec)
1121
1146
if source_branch is None:
1122
1147
# this is for sprouting a bzrdir without a branch; is that
1124
1149
# Not especially, but it's part of the contract.
1125
1150
result_branch = result.create_branch()
1127
# Force NULL revision to avoid using repository before stacking
1129
result_branch = source_branch.sprout(
1130
result, revision_id=_mod_revision.NULL_REVISION)
1131
parent_location = result_branch.get_parent()
1152
result_branch = source_branch.sprout(result,
1153
revision_id=revision_id, repository_policy=repository_policy)
1132
1154
mutter("created new branch %r" % (result_branch,))
1133
repository_policy.configure_branch(result_branch)
1134
if source_branch is not None:
1135
source_branch.copy_content_into(result_branch, revision_id)
1136
# Override copy_content_into
1137
result_branch.set_parent(parent_location)
1139
1156
# Create/update the result working tree
1140
1157
if (create_tree_if_local and
1202
def push_branch(self, source, revision_id=None, overwrite=False,
1204
"""Push the source branch into this BzrDir."""
1206
# If we can open a branch, use its direct repository, otherwise see
1207
# if there is a repository without a branch.
1209
br_to = self.open_branch()
1210
except errors.NotBranchError:
1211
# Didn't find a branch, can we find a repository?
1212
repository_to = self.find_repository()
1214
# Found a branch, so we must have found a repository
1215
repository_to = br_to.repository
1217
push_result = PushResult()
1218
push_result.source_branch = source
1220
# We have a repository but no branch, copy the revisions, and then
1222
repository_to.fetch(source.repository, revision_id=revision_id)
1223
br_to = source.clone(self, revision_id=revision_id)
1224
if source.get_push_location() is None or remember:
1225
source.set_push_location(br_to.base)
1226
push_result.stacked_on = None
1227
push_result.branch_push_result = None
1228
push_result.old_revno = None
1229
push_result.old_revid = _mod_revision.NULL_REVISION
1230
push_result.target_branch = br_to
1231
push_result.master_branch = None
1232
push_result.workingtree_updated = False
1234
# We have successfully opened the branch, remember if necessary:
1235
if source.get_push_location() is None or remember:
1236
source.set_push_location(br_to.base)
1238
tree_to = self.open_workingtree()
1239
except errors.NotLocalUrl:
1240
push_result.branch_push_result = source.push(br_to,
1241
overwrite, stop_revision=revision_id)
1242
push_result.workingtree_updated = False
1243
except errors.NoWorkingTree:
1244
push_result.branch_push_result = source.push(br_to,
1245
overwrite, stop_revision=revision_id)
1246
push_result.workingtree_updated = None # Not applicable
1248
tree_to.lock_write()
1250
push_result.branch_push_result = source.push(
1251
tree_to.branch, overwrite, stop_revision=revision_id)
1255
push_result.workingtree_updated = True
1256
push_result.old_revno = push_result.branch_push_result.old_revno
1257
push_result.old_revid = push_result.branch_push_result.old_revid
1258
push_result.target_branch = \
1259
push_result.branch_push_result.target_branch
1263
class BzrDirHooks(hooks.Hooks):
1264
"""Hooks for BzrDir operations."""
1267
"""Create the default hooks."""
1268
hooks.Hooks.__init__(self)
1269
self.create_hook(hooks.HookPoint('pre_open',
1270
"Invoked before attempting to open a BzrDir with the transport "
1271
"that the open will use.", (1, 14), None))
1273
# install the default hooks
1274
BzrDir.hooks = BzrDirHooks()
1186
1277
class BzrDirPreSplitOut(BzrDir):
1187
1278
"""A common class for the all-in-one formats."""
1340
1431
def sprout(self, url, revision_id=None, force_new_repo=False,
1341
1432
possible_transports=None, accelerator_tree=None,
1342
hardlink=False, stacked=False, create_tree_if_local=True):
1433
hardlink=False, stacked=False, create_tree_if_local=True,
1434
source_branch=None):
1343
1435
"""See BzrDir.sprout()."""
1436
if source_branch is not None:
1437
my_branch = self.open_branch()
1438
if source_branch.base != my_branch.base:
1439
raise AssertionError(
1440
"source branch %r is not within %r with branch %r" %
1441
(source_branch, self, my_branch))
1345
1443
raise errors.UnstackableBranchFormat(
1346
1444
self._format, self.root_transport.base)
1577
def open_branch(self, unsupported=False):
1675
def open_branch(self, unsupported=False, ignore_fallbacks=False):
1578
1676
"""See BzrDir.open_branch."""
1579
1677
format = self.find_branch_format()
1580
1678
self._check_supported(format, unsupported)
1581
return format.open(self, _found=True)
1679
return format.open(self, _found=True, ignore_fallbacks=ignore_fallbacks)
1583
1681
def open_repository(self, unsupported=False):
1584
1682
"""See BzrDir.open_repository."""
1691
1789
current default format. In the case of plugins we can/should provide
1692
1790
some means for them to extend the range of returnable converters.
1694
:param format: Optional format to override the default format of the
1792
:param format: Optional format to override the default format of the
1697
1795
raise NotImplementedError(self.get_converter)
1699
1797
def initialize(self, url, possible_transports=None):
1700
1798
"""Create a bzr control dir at this url and return an opened copy.
1702
1800
Subclasses should typically override initialize_on_transport
1703
1801
instead of this method.
1765
1863
"""Is this format supported?
1767
1865
Supported formats must be initializable and openable.
1768
Unsupported formats may not support initialization or committing or
1866
Unsupported formats may not support initialization or committing or
1769
1867
some other features depending on the reason for not being supported.
1871
def network_name(self):
1872
"""A simple byte string uniquely identifying this format for RPC calls.
1874
Bzr control formats use thir disk format string to identify the format
1875
over the wire. Its possible that other control formats have more
1876
complex detection requirements, so we permit them to use any unique and
1877
immutable string they desire.
1879
raise NotImplementedError(self.network_name)
1773
1881
def same_model(self, target_format):
1774
return (self.repository_format.rich_root_data ==
1882
return (self.repository_format.rich_root_data ==
1775
1883
target_format.rich_root_data)
1778
1886
def known_formats(klass):
1779
1887
"""Return all the known formats.
1781
1889
Concrete formats should override _known_formats.
1783
# There is double indirection here to make sure that control
1784
# formats used by more than one dir format will only be probed
1891
# There is double indirection here to make sure that control
1892
# formats used by more than one dir format will only be probed
1785
1893
# once. This can otherwise be quite expensive for remote connections.
1787
1895
for format in klass._control_formats:
1788
1896
result.update(format._known_formats())
1792
1900
def _known_formats(klass):
1793
1901
"""Return the known format instances for this control format."""
1796
1904
def open(self, transport, _found=False):
1797
1905
"""Return an instance of this format for the dir transport points at.
1799
1907
_found is a private parameter, do not use it.
1802
1910
found_format = BzrDirFormat.find_format(transport)
1803
1911
if not isinstance(found_format, self.__class__):
1804
1912
raise AssertionError("%s was asked to open %s, but it seems to need "
1806
1914
% (self, transport, found_format))
1807
1915
# Allow subclasses - use the found format.
1808
1916
self._supply_sub_formats_to(found_format)
1821
1929
def register_format(klass, format):
1822
1930
klass._formats[format.get_format_string()] = format
1931
# bzr native formats have a network name of their format string.
1932
network_format_registry.register(format.get_format_string(), format.__class__)
1825
1935
def register_control_format(klass, format):
1826
1936
"""Register a format that does not use '.bzr' for its control dir.
1828
1938
TODO: This should be pulled up into a 'ControlDirFormat' base class
1829
which BzrDirFormat can inherit from, and renamed to register_format
1939
which BzrDirFormat can inherit from, and renamed to register_format
1830
1940
there. It has been done without that for now for simplicity of
1831
1941
implementation.
2011
2127
"""See BzrDirFormat.get_converter()."""
2012
2128
# there is one and only one upgrade path here.
2013
2129
return ConvertBzrDir6ToMeta()
2015
2131
def _initialize_for_clone(self, url):
2016
2132
return self.initialize_on_transport(get_transport(url), _cloning=True)
2018
2134
def initialize_on_transport(self, transport, _cloning=False):
2019
2135
"""Format 6 dirs always have working tree, branch and repository.
2021
2137
Except when they are being cloned.
2023
2139
from bzrlib.branch import BzrBranchFormat4
2084
2204
# target doesn't support stacking. So force a branch that *can*
2085
2205
# support stacking.
2086
2206
from bzrlib.branch import BzrBranchFormat7
2087
self._branch_format = BzrBranchFormat7()
2088
mutter("using %r for stacking" % (self._branch_format,))
2207
branch_format = BzrBranchFormat7()
2208
self.set_branch_format(branch_format)
2209
mutter("using %r for stacking" % (branch_format,))
2089
2210
from bzrlib.repofmt import pack_repo
2090
2211
if self.repository_format.rich_root_data:
2091
2212
bzrdir_format_name = '1.6.1-rich-root'
2115
2236
"""See BzrDirFormat.get_format_description()."""
2116
2237
return "Meta directory format 1"
2239
def network_name(self):
2240
return self.get_format_string()
2118
2242
def _open(self, transport):
2119
2243
"""See BzrDirFormat._open."""
2120
2244
return BzrDirMeta1(transport, self)
2122
2246
def __return_repository_format(self):
2123
2247
"""Circular import protection."""
2124
if getattr(self, '_repository_format', None):
2248
if self._repository_format:
2125
2249
return self._repository_format
2126
2250
from bzrlib.repository import RepositoryFormat
2127
2251
return RepositoryFormat.get_default_format()
2393
2526
text_changed = False
2394
2527
parent_candiate_entries = ie.parent_candidates(parent_invs)
2395
2528
heads = graph.Graph(self).heads(parent_candiate_entries.keys())
2396
# XXX: Note that this is unordered - and this is tolerable because
2529
# XXX: Note that this is unordered - and this is tolerable because
2397
2530
# the previous code was also unordered.
2398
2531
previous_entries = dict((head, parent_candiate_entries[head]) for head
2400
2533
self.snapshot_ie(previous_entries, ie, w, rev_id)
2403
@symbol_versioning.deprecated_method(symbol_versioning.one_one)
2404
def get_parents(self, revision_ids):
2405
for revision_id in revision_ids:
2406
yield self.revisions[revision_id].parent_ids
2408
2536
def get_parent_map(self, revision_ids):
2409
2537
"""See graph._StackedParentsProvider.get_parent_map"""
2410
2538
return dict((revision_id, self.revisions[revision_id])
2416
2544
# a call to:. This needs the path figured out. rather than a work_tree
2417
2545
# a v4 revision_tree can be given, or something that looks enough like
2418
2546
# one to give the file content to the entry if it needs it.
2419
# and we need something that looks like a weave store for snapshot to
2547
# and we need something that looks like a weave store for snapshot to
2420
2548
# save against.
2421
2549
#ie.snapshot(rev, PATH, previous_revisions, REVISION_TREE, InMemoryWeaveStore(self.text_weaves))
2422
2550
if len(previous_revisions) == 1:
2686
2814
isinstance(self.target_format.workingtree_format,
2687
2815
workingtree_4.WorkingTreeFormat5)):
2688
2816
workingtree_4.Converter4to5().convert(tree)
2817
if (isinstance(tree, workingtree_4.DirStateWorkingTree) and
2818
not isinstance(tree, workingtree_4.WorkingTree6) and
2819
isinstance(self.target_format.workingtree_format,
2820
workingtree_4.WorkingTreeFormat6)):
2821
workingtree_4.Converter4or5to6().convert(tree)
2689
2822
return to_convert
2696
2829
class RemoteBzrDirFormat(BzrDirMetaFormat1):
2697
2830
"""Format representing bzrdirs accessed via a smart server"""
2833
BzrDirMetaFormat1.__init__(self)
2834
self._network_name = None
2699
2836
def get_format_description(self):
2700
2837
return 'bzr remote bzrdir'
2839
def get_format_string(self):
2840
raise NotImplementedError(self.get_format_string)
2842
def network_name(self):
2843
if self._network_name:
2844
return self._network_name
2846
raise AssertionError("No network name set.")
2703
2849
def probe_transport(klass, transport):
2704
2850
"""Return a RemoteBzrDirFormat object if it looks possible."""
2752
2898
# Always return a RemoteRepositoryFormat object, but if a specific bzr
2753
2899
# repository format has been asked for, tell the RemoteRepositoryFormat
2754
2900
# that it should use that for init() etc.
2755
result = remote.RemoteRepositoryFormat()
2901
result = remote.RemoteRepositoryFormat()
2756
2902
custom_format = getattr(self, '_repository_format', None)
2757
2903
if custom_format:
2758
# We will use the custom format to create repositories over the
2759
# wire; expose its details like rich_root_data for code to query
2760
2904
if isinstance(custom_format, remote.RemoteRepositoryFormat):
2761
result._custom_format = custom_format._custom_format
2905
return custom_format
2907
# We will use the custom format to create repositories over the
2908
# wire; expose its details like rich_root_data for code to
2763
2910
result._custom_format = custom_format
2764
result.rich_root_data = custom_format.rich_root_data
2913
def get_branch_format(self):
2914
result = BzrDirMetaFormat1.get_branch_format(self)
2915
if not isinstance(result, remote.RemoteBranchFormat):
2916
new_result = remote.RemoteBranchFormat()
2917
new_result._custom_format = result
2919
self.set_branch_format(new_result)
2767
2923
repository_format = property(__return_repository_format,
2908
3064
def wrapped(key, help, info):
2909
3065
if info.native:
2910
3066
help = '(native) ' + help
2911
return ':%s:\n%s\n\n' % (key,
2912
textwrap.fill(help, initial_indent=' ',
3067
return ':%s:\n%s\n\n' % (key,
3068
textwrap.fill(help, initial_indent=' ',
2913
3069
subsequent_indent=' '))
2914
3070
if default_realkey is not None:
2915
3071
output += wrapped(default_realkey, '(default) %s' % default_help,
3057
3215
Creates the desired repository in the bzrdir we already have.
3217
stack_on = self._get_full_stack_on()
3219
# Stacking is desired. requested by the target, but does the place it
3220
# points at support stacking? If it doesn't then we should
3221
# not implicitly upgrade. We check this here.
3222
format = self._bzrdir._format
3223
if not (format.repository_format.supports_external_lookups
3224
and format.get_branch_format().supports_stacking()):
3225
# May need to upgrade - but only do if the target also
3226
# supports stacking. Note that this currently wastes
3227
# network round trips to check - but we only do this
3228
# when the source can't stack so it will fade away
3229
# as people do upgrade.
3231
target_dir = BzrDir.open(stack_on,
3232
possible_transports=[self._bzrdir.root_transport])
3233
except errors.NotBranchError:
3234
# Nothing there, don't change formats
3238
target_branch = target_dir.open_branch()
3239
except errors.NotBranchError:
3240
# No branch, don't change formats
3243
branch_format = target_branch._format
3244
repo_format = target_branch.repository._format
3245
if not (branch_format.supports_stacking()
3246
and repo_format.supports_external_lookups):
3247
# Doesn't stack itself, don't force an upgrade
3250
# Does support stacking, use its format.
3251
format.repository_format = repo_format
3252
format.set_branch_format(branch_format)
3253
note('Source format does not support stacking, '
3254
'using format: \'%s\'\n %s\n',
3255
branch_format.get_format_description(),
3256
repo_format.get_format_description())
3257
if not self._require_stacking:
3258
# We have picked up automatic stacking somewhere.
3259
note('Using default stacking branch %s at %s', self._stack_on,
3059
3261
repository = self._bzrdir.create_repository(shared=shared)
3060
3262
self._add_fallback(repository,
3061
3263
possible_transports=[self._bzrdir.transport])
3062
3264
if make_working_trees is not None:
3063
3265
repository.set_make_working_trees(make_working_trees)
3266
return repository, True
3067
3269
class UseExistingRepository(RepositoryAcquisitionPolicy):
3083
3285
def acquire_repository(self, make_working_trees=None, shared=False):
3084
3286
"""Implementation of RepositoryAcquisitionPolicy.acquire_repository
3086
Returns an existing repository to use
3288
Returns an existing repository to use.
3088
3290
self._add_fallback(self._repository,
3089
3291
possible_transports=[self._repository.bzrdir.transport])
3090
return self._repository
3292
return self._repository, False
3093
3295
# Please register new formats after old formats so that formats
3204
3406
format_registry.register_metadir('1.9-rich-root',
3205
3407
'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3206
3408
help='A variant of 1.9 that supports rich-root data '
3207
'(needed for bzr-svn).',
3409
'(needed for bzr-svn and bzr-git).',
3208
3410
branch_format='bzrlib.branch.BzrBranchFormat7',
3209
3411
tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3211
format_registry.register_metadir('development-wt5',
3413
format_registry.register_metadir('1.14',
3212
3414
'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3213
help='A working-tree format that supports views and content filtering.',
3415
help='A working-tree format that supports content filtering.',
3214
3416
branch_format='bzrlib.branch.BzrBranchFormat7',
3215
3417
tree_format='bzrlib.workingtree.WorkingTreeFormat5',
3218
format_registry.register_metadir('development-wt5-rich-root',
3419
format_registry.register_metadir('1.14-rich-root',
3219
3420
'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3220
help='A variant of development-wt5 that supports rich-root data '
3221
'(needed for bzr-svn).',
3421
help='A variant of 1.14 that supports rich-root data '
3422
'(needed for bzr-svn and bzr-git).',
3222
3423
branch_format='bzrlib.branch.BzrBranchFormat7',
3223
3424
tree_format='bzrlib.workingtree.WorkingTreeFormat5',
3226
3426
# The following two formats should always just be aliases.
3227
3427
format_registry.register_metadir('development',
3274
3474
experimental=True,
3476
# These next two formats should be removed when the gc formats are
3477
# updated to use WorkingTreeFormat6 and are merged into bzr.dev
3478
format_registry.register_metadir('development-wt6',
3479
'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3480
help='1.14 with filtered views. '
3482
'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
3484
branch_format='bzrlib.branch.BzrBranchFormat7',
3485
tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3489
format_registry.register_metadir('development-wt6-rich-root',
3490
'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3491
help='A variant of development-wt6 that supports rich-root data '
3492
'(needed for bzr-svn and bzr-git).',
3493
branch_format='bzrlib.branch.BzrBranchFormat7',
3494
tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3498
# The following format should be an alias for the rich root equivalent
3499
# of the default format
3500
format_registry.register_metadir('default-rich-root',
3501
'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
3502
help='Default format, rich root variant. (needed for bzr-svn and bzr-git).',
3503
branch_format='bzrlib.branch.BzrBranchFormat6',
3504
tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3276
3507
# The current format that is made on 'bzr init'.
3277
3508
format_registry.set_default('pack-0.92')