/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

  • Committer: Robert Collins
  • Date: 2007-10-23 22:14:32 UTC
  • mto: (2592.6.3 repository)
  • mto: This revision was merged to the branch mainline in revision 2967.
  • Revision ID: robertc@robertcollins.net-20071023221432-j8zndh1oiegql3cu
* Commit updates the state of the working tree via a delta rather than
  supplying entirely new basis trees. For commit of a single specified file
  this reduces the wall clock time for commit by roughly a 30%.
  (Robert Collins, Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
437
437
        inventory for the parent new_revid, and all other parent trees are
438
438
        discarded.
439
439
 
 
440
        All the changes in the delta should be changes synchronising the basis
 
441
        tree with some or all of the working tree, with a change to a directory
 
442
        requiring that its contents have been recursively included. That is,
 
443
        this is not a general purpose tree modification routine, but a helper
 
444
        for commit which is not required to handle situations that do not arise
 
445
        outside of commit.
 
446
 
440
447
        :param new_revid: The new revision id for the trees parent.
441
448
        :param delta: An inventory delta (see apply_inventory_delta) describing
442
449
            the changes from the current left most parent revision to new_revid.