/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/builtins.py

  • Committer: Parth Malwankar
  • Date: 2010-05-03 08:33:32 UTC
  • mto: This revision was merged to the branch mainline in revision 5210.
  • Revision ID: parth.malwankar@gmail.com-20100503083332-233xyz4wwef6x3ey
removedĀ unusedĀ import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1350
1350
            except errors.NoWorkingTree:
1351
1351
                source.bzrdir.create_workingtree(revision_id)
1352
1352
                return
 
1353
 
 
1354
        if not lightweight:
 
1355
            message = ('Copying history to "%s". '
 
1356
                'This may take some time.' % to_location)
 
1357
            ui.ui_factory.show_message(message)
1353
1358
        source.create_checkout(to_location, revision_id, lightweight,
1354
1359
                               accelerator_tree, hardlink)
1355
1360
 
4681
4686
 
4682
4687
class cmd_bind(Command):
4683
4688
    __doc__ = """Convert the current branch into a checkout of the supplied branch.
4684
 
    If no branch is supplied, rebind to the last bound location.
4685
4689
 
4686
4690
    Once converted into a checkout, commits must succeed on the master branch
4687
4691
    before they will be applied to the local branch.