[Pkg-bazaar-commits] ./bzr/unstable r110: Add more patterns to default ignore list
mbp at sourcefrog.net
mbp at sourcefrog.net
Fri Apr 10 07:51:10 UTC 2009
------------------------------------------------------------
revno: 110
committer: mbp at sourcefrog.net
timestamp: Mon 2005-03-28 12:39:35 +1000
message:
Add more patterns to default ignore list
modified:
NEWS
bzrlib/__init__.py
-------------- next part --------------
=== modified file 'NEWS'
--- a/NEWS 2005-03-27 09:50:34 +0000
+++ b/NEWS 2005-03-28 02:39:35 +0000
@@ -2,8 +2,7 @@
CHANGES:
- * Default ignore list changed to .bzr.log, *~, #*#, *.tmp, *.bak,
- *.o, *.a, *.py[oc], {arch}, CVS, .svn, _darcs.
+ * Default ignore list extended (see bzrlib/__init__.py).
* Patterns in .bzrignore are now added to the default ignore list,
rather than replacing it.
@@ -12,6 +11,8 @@
* Ignore list is memoized after first request.
+ * More help topics.
+
bzr-0.0.1 2005-03-26
=== modified file 'bzrlib/__init__.py'
--- a/bzrlib/__init__.py 2005-03-27 09:14:45 +0000
+++ b/bzrlib/__init__.py 2005-03-28 02:39:35 +0000
@@ -26,9 +26,12 @@
BZRDIR = ".bzr"
-DEFAULT_IGNORE = ['.bzr.log', '*~', '#*#', '*.tmp', '*.bak',
- '*.o', '*.a', '*.py[oc]',
- '{arch}', 'CVS', '.svn', '_darcs']
+DEFAULT_IGNORE = ['.bzr.log',
+ '*~', '#*#', '*$', '.#*',
+ '*.tmp', '*.bak', '*.BAK', '*.orig',
+ '*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.exe', '*.elc',
+ '{arch}', 'CVS', '.svn', '_darcs', 'SCCS', 'RCS',
+ 'TAGS', '.make.state', '.sconsign']
IGNORE_FILENAME = ".bzrignore"
More information about the Pkg-bazaar-commits
mailing list