~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-27 09:14:45 UTC
  • Revision ID: mbp@sourcefrog.net-20050327091445-d59328fc7fe0ab32
change default ignore list

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/env python
2
 
# -*- coding: UTF-8 -*-
 
1
# (C) 2005 Canonical Development Ltd
3
2
 
4
3
# This program is free software; you can redistribute it and/or modify
5
4
# it under the terms of the GNU General Public License as published by
27
26
 
28
27
BZRDIR = ".bzr"
29
28
 
30
 
DEFAULT_IGNORE = ['.*', '*~', '#*#', '*.tmp', '*.o', '*.a', '*.py[oc]',
31
 
                  '{arch}']
 
29
DEFAULT_IGNORE = ['.bzr.log', '*~', '#*#', '*.tmp', '*.bak',
 
30
                  '*.o', '*.a', '*.py[oc]',
 
31
                  '{arch}', 'CVS', '.svn', '_darcs']
32
32
 
33
33
IGNORE_FILENAME = ".bzrignore"
34
34