~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

Remove the default ignores list from bzr, lowering the minimum overhead in bzr add.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1082
1082
        if hasattr(self, '_ignorelist'):
1083
1083
            return self._ignorelist
1084
1084
 
1085
 
        l = bzrlib.DEFAULT_IGNORE[:]
 
1085
        l = []
1086
1086
        if self.has_filename(bzrlib.IGNORE_FILENAME):
1087
1087
            f = self.get_file_byname(bzrlib.IGNORE_FILENAME)
1088
1088
            l.extend([line.rstrip("\n\r").decode('utf-8')