~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

Nearly-working build_tree replacement

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
    """
268
268
    # RBC 20051019 is this not just 'export' ?
269
269
    # AB Well, export doesn't take care of inventory...
 
270
    from transform import build_tree
270
271
    this_branch = Branch.open_containing(to_dir)[0]
271
 
    transform_tree(this_branch.working_tree(), this_branch.basis_tree())
 
272
    build_tree(this_branch, this_branch.basis_tree())
272
273
 
273
274
 
274
275
def transform_tree(from_tree, to_tree, interesting_ids=None):