~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-08-08 06:17:19 UTC
  • mfrom: (3603.3.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080808061719-ixk3x48n198814tg
(robertc) The help for bzr ignored now sugests bzr ls --ignored.
        (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1941
1941
            print "Warning: the following files are version controlled and" \
1942
1942
                  " match your ignore pattern:\n%s" % ("\n".join(matches),)
1943
1943
 
 
1944
 
1944
1945
class cmd_ignored(Command):
1945
1946
    """List ignored files and the patterns that matched them.
 
1947
 
 
1948
    List all the ignored files and the ignore pattern that caused the file to
 
1949
    be ignored.
 
1950
 
 
1951
    Alternatively, to list just the files::
 
1952
 
 
1953
        bzr ls --ignored
1946
1954
    """
1947
1955
 
1948
1956
    encoding_type = 'replace'
1949
 
    _see_also = ['ignore']
 
1957
    _see_also = ['ignore', 'ls']
1950
1958
 
1951
1959
    @display_command
1952
1960
    def run(self):