~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-02-16 19:22:55 UTC
  • mfrom: (5664.1.1 document-no-tree)
  • Revision ID: pqm@pqm.ubuntu.com-20110216192255-ihgckago297tcp5z
(jelmer) Document no_tree argument to ControlDir.clone_on_transport. (Jelmer
 Vernooij)

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