~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/cmd_version_info.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-01-20 02:01:04 UTC
  • mfrom: (2220.1.14 bzr.ab.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070120020104-a192555a9165b259
mv can also work on just inventory entry (Eichenberg, Kruger)

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
 
47
47
class cmd_version_info(Command):
48
 
    """Show version information about this tree."""
 
48
    """Generate version information about this tree."""
49
49
 
50
50
    takes_options = [Option('format', type=_parse_version_info_format,
51
 
                            help='Select the output format.'),
52
 
                     Option('all', help='Include all possible information.'),
53
 
                     Option('check-clean', help='Check if tree is clean.'),
 
51
                            help='Select the output format'),
 
52
                     Option('all', help='include all possible information'),
 
53
                     Option('check-clean', help='check if tree is clean'),
54
54
                     Option('include-history',
55
 
                            help='Include the revision-history.'),
 
55
                            help='Include the revision-history'),
56
56
                     Option('include-file-revisions',
57
 
                            help='Include the last revision for each file.')
 
57
                            help='Include the last revision for each file')
58
58
                     ]
59
59
    takes_args = ['location?']
60
60