[Pkg-bazaar-commits] ./bzr/unstable r101: change default ignore list

mbp at sourcefrog.net mbp at sourcefrog.net
Fri Apr 10 07:51:08 UTC 2009


------------------------------------------------------------
revno: 101
committer: mbp at sourcefrog.net
timestamp: Sun 2005-03-27 19:14:45 +1000
message:
  change default ignore list
modified:
  NEWS
  bzrlib/__init__.py
-------------- next part --------------
=== modified file 'NEWS'
--- a/NEWS	2005-03-26 03:10:07 +0000
+++ b/NEWS	2005-03-27 09:14:45 +0000
@@ -1,3 +1,11 @@
+bzr-0.0.2  NOT RELEASED YET
+
+  CHANGES:
+
+    * Default ignore list changed to .bzr.log, *~, #*#, *.tmp, *.bak,
+      *.o, *.a, *.py[oc], {arch}, CVS, .svn, _darcs.
+
+
 bzr-0.0.1  2005-03-26
 
   ENHANCEMENTS:

=== modified file 'bzrlib/__init__.py'
--- a/bzrlib/__init__.py	2005-03-26 03:10:07 +0000
+++ b/bzrlib/__init__.py	2005-03-27 09:14:45 +0000
@@ -1,5 +1,4 @@
-#! /usr/bin/env python
-# -*- coding: UTF-8 -*-
+# (C) 2005 Canonical Development Ltd
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -27,8 +26,9 @@
 
 BZRDIR = ".bzr"
 
-DEFAULT_IGNORE = ['.*', '*~', '#*#', '*.tmp', '*.o', '*.a', '*.py[oc]',
-                  '{arch}']
+DEFAULT_IGNORE = ['.bzr.log', '*~', '#*#', '*.tmp', '*.bak',
+                  '*.o', '*.a', '*.py[oc]',
+                  '{arch}', 'CVS', '.svn', '_darcs']
 
 IGNORE_FILENAME = ".bzrignore"
 



More information about the Pkg-bazaar-commits mailing list