~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-06-01 07:44:39 UTC
  • Revision ID: mbp@sourcefrog.net-20050601074439-f3178be2d71d2db8
- ignore .git

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
DEFAULT_IGNORE = ['.bzr.log',
31
31
                  '*~', '#*#', '*$', '.#*',
32
 
                  '.*.sw[onp]', '.*.tmp',
 
32
                  '.*.sw[nop]', '.*.tmp',
33
33
                  '*.tmp', '*.bak', '*.BAK', '*.orig',
34
34
                  '*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.exe', '*.elc', 
35
35
                  '{arch}', 'CVS', 'CVS.adm', '.svn', '_darcs', 'SCCS', 'RCS',
36
36
                  '*,v',
37
37
                  'BitKeeper',
 
38
                  '.git',
38
39
                  'TAGS', '.make.state', '.sconsign', '.tmp*',
39
40
                  '.del-*']
40
41