~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
602
602
 
603
603
    def clone_on_transport(self, transport, revision_id=None,
604
604
        force_new_repo=False, preserve_stacking=False, stacked_on=None,
605
 
        create_prefix=False, use_existing_dir=True):
 
605
        create_prefix=False, use_existing_dir=True, no_tree=False):
606
606
        """Clone this bzrdir and its contents to transport verbatim.
607
607
 
608
608
        :param transport: The transport for the location to produce the clone
617
617
        :param create_prefix: Create any missing directories leading up to
618
618
            to_transport.
619
619
        :param use_existing_dir: Use an existing directory if one exists.
 
620
        :param no_tree: If set to true prevents creation of a working tree.
620
621
        """
621
622
        raise NotImplementedError(self.clone_on_transport)
622
623