~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/clone.py

  • Committer: Robert Collins
  • Date: 2005-10-06 00:52:53 UTC
  • Revision ID: robertc@robertcollins.net-20051006005253-415c38ad22094f13
define some expected behaviour for inventory_entry.snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
def _copy_control_weaves(branch_from, branch_to):
118
118
    to_control = branch_to.control_weaves
119
119
    from_control = branch_from.control_weaves
120
 
    to_control.copy_multi(from_control, ['inventory'])
 
120
    to_control.copy_multi(from_control, ['inventory', 'ancestry'])
121
121
 
122
122
    
123
123
def copy_branch_slower(branch_from, to_location, revision=None, basis_branch=None):