~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: 2010-01-21 17:54:58 UTC
  • mfrom: (4948.5.7 ignore-exclusion)
  • Revision ID: pqm@pqm.ubuntu.com-20100121175458-17l0cvckbrf93eea
(John Whitley) implement ! and !! to exclude files from ignore rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2609
2609
    After adding, editing or deleting that file either indirectly by
2610
2610
    using this command or directly by using an editor, be sure to commit
2611
2611
    it.
 
2612
    
 
2613
    Patterns prefixed with '!' are exceptions to ignore patterns and take
 
2614
    precedence over regular ignores.  Such exceptions are used to specify
 
2615
    files that should be versioned which would otherwise be ignored.
 
2616
    
 
2617
    Patterns prefixed with '!!' act as regular ignore patterns, but have
 
2618
    precedence over the '!' exception patterns.
2612
2619
 
2613
2620
    Note: ignore patterns containing shell wildcards must be quoted from
2614
2621
    the shell on Unix.
2618
2625
 
2619
2626
            bzr ignore ./Makefile
2620
2627
 
2621
 
        Ignore class files in all directories::
 
2628
        Ignore .class files in all directories...::
2622
2629
 
2623
2630
            bzr ignore "*.class"
2624
2631
 
 
2632
        ...but do not ignore "special.class"::
 
2633
 
 
2634
            bzr ignore "!special.class"
 
2635
 
2625
2636
        Ignore .o files under the lib directory::
2626
2637
 
2627
2638
            bzr ignore "lib/**/*.o"
2633
2644
        Ignore everything but the "debian" toplevel directory::
2634
2645
 
2635
2646
            bzr ignore "RE:(?!debian/).*"
 
2647
        
 
2648
        Ignore everything except the "local" toplevel directory,
 
2649
        but always ignore "*~" autosave files, even under local/::
 
2650
        
 
2651
            bzr ignore "*"
 
2652
            bzr ignore "!./local"
 
2653
            bzr ignore "!!*~"
2636
2654
    """
2637
2655
 
2638
2656
    _see_also = ['status', 'ignored', 'patterns']