~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2007-01-08 17:27:48 UTC
  • Revision ID: abentley@panoramicfeedback.com-20070108172748-1b22qtszaadoby89
Improve bzr import docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
525
525
 
526
526
 
527
527
class cmd_import(bzrlib.commands.Command):
528
 
    """Import sources from a tarball or zip file
 
528
    """Import sources from a directory, tarball or zip file
529
529
    
530
 
    This command will import a tarball or zip file into a bzr tree, replacing
531
 
    any versioned files already present.  If a directory is specified, it is
532
 
    used as the target.  If the directory does not exist, or is not versioned,
533
 
    it is created.
 
530
    This command will import a directory, tarball or zip file into a bzr
 
531
    tree, replacing any versioned files already present.  If a directory is
 
532
    specified, it is used as the target.  If the directory does not exist, or
 
533
    is not versioned, it is created.
534
534
 
535
535
    Tarballs may be gzip or bzip2 compressed.  This is autodetected.
536
536
 
537
 
    If the tarball has a single root directory, that directory is stripped
538
 
    when extracting the tarball.
 
537
    If the tarball or zip has a single root directory, that directory is
 
538
    stripped when extracting the tarball.  This is not done for directories.
539
539
    """
540
540
    
541
541
    takes_args = ['source', 'tree?']