~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

Hide 'unknowns', document alterntatives to hidden commands

Show diffs side-by-side

added added

removed removed

Lines of Context:
416
416
 
417
417
    It is also possible to restrict the list of files to a specific
418
418
    set. For example: bzr inventory --show-ids this/file
 
419
 
 
420
    See also: bzr ls
419
421
    """
420
422
 
 
423
    hidden = True
421
424
    takes_options = ['revision', 'show-ids', 'kind']
422
425
    takes_args = ['file*']
423
426
 
1341
1344
 
1342
1345
 
1343
1346
class cmd_modified(Command):
1344
 
    """List files modified in working tree."""
 
1347
    """List files modified in working tree.
 
1348
 
 
1349
    See also: "bzr status".
 
1350
    """
1345
1351
    hidden = True
1346
1352
    @display_command
1347
1353
    def run(self):
1352
1358
 
1353
1359
 
1354
1360
class cmd_added(Command):
1355
 
    """List files added in working tree."""
 
1361
    """List files added in working tree.
 
1362
 
 
1363
    See also: "bzr status".
 
1364
    """
1356
1365
    hidden = True
1357
1366
    @display_command
1358
1367
    def run(self):
1633
1642
 
1634
1643
 
1635
1644
class cmd_unknowns(Command):
1636
 
    """List unknown files."""
 
1645
    """List unknown files.
 
1646
 
 
1647
    See also: "bzr ls --unknown".
 
1648
    """
 
1649
    hidden = True
1637
1650
    @display_command
1638
1651
    def run(self):
1639
1652
        for f in WorkingTree.open_containing(u'.')[0].unknowns():