~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

- doc and todo for ignore command

Show diffs side-by-side

added added

removed removed

Lines of Context:
815
815
    To remove patterns from the ignore list, edit the .bzrignore file.
816
816
 
817
817
    If the pattern contains a slash, it is compared to the whole path
818
 
    from the branch root.  Otherwise, it is comapred to only the last
819
 
    component of the path.
 
818
    from the branch root.  Otherwise, it is compared to only the last
 
819
    component of the path.  To match a file only in the root directory,
 
820
    prepend './'.
820
821
 
821
822
    Ignore patterns are case-insensitive on case-insensitive systems.
822
823
 
826
827
        bzr ignore ./Makefile
827
828
        bzr ignore '*.class'
828
829
    """
 
830
    # TODO: Complain if the filename is absolute
829
831
    takes_args = ['name_pattern']
830
832
    
831
833
    def run(self, name_pattern):