~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-05-10 00:47:18 UTC
  • Revision ID: mbp@sourcefrog.net-20050510004718-5f45d2d22fd94532
Doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
484
484
 
485
485
 
486
486
class cmd_ignore(Command):
487
 
    """Ignore a command or pattern"""
 
487
    """Ignore a command or pattern
 
488
 
 
489
    To remove patterns from the ignore list, edit the .bzrignore file.
 
490
 
 
491
    If the pattern contains a slash, it is compared to the whole path
 
492
    from the branch root.  Otherwise, it is comapred to only the last
 
493
    component of the path.
 
494
 
 
495
    Ignore patterns are case-insensitive on case-insensitive systems.
 
496
 
 
497
    Note: wildcards must be quoted from the shell on Unix.
 
498
 
 
499
    examples:
 
500
        bzr ignore ./Makefile
 
501
        bzr ignore '*.class'
 
502
    """
488
503
    takes_args = ['name_pattern']
489
504
    
490
505
    def run(self, name_pattern):