~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

 * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
   behaviour. They use the existing serverless-mode and store no data
   locally. As such they are not suitable for use except in high bandwidth
   low latency environments like LAN's or local disk. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
    count_version_dirs = 0
49
49
 
50
 
    working = WorkingTree(b.base, b)
 
50
    working = b.bzrdir.open_workingtree()
51
51
    basis = working.basis_tree()
52
52
    work_inv = working.inventory
53
53
    delta = diff.compare_trees(basis, working, want_unchanged=True)