[Pkg-bazaar-commits] ./bzr/unstable r348: - Add vim and RCS ignorefile patterns

Martin Pool mbp at sourcefrog.net
Fri Apr 10 07:43:46 UTC 2009


------------------------------------------------------------
revno: 348
committer: Martin Pool <mbp at sourcefrog.net>
timestamp: Thu 2005-05-05 12:46:17 +1000
message:
  - Add vim and RCS ignorefile patterns
modified:
  NEWS
  bzrlib/__init__.py
-------------- next part --------------
=== modified file 'NEWS'
--- a/NEWS	2005-05-05 02:30:52 +0000
+++ b/NEWS	2005-05-05 02:46:17 +0000
@@ -1,5 +1,4 @@
 bzr-0.0.5  NOT RELEASED YET
-***************************
 
   ENHANCEMENTS:
 
@@ -11,6 +10,8 @@
     * Nicer error message for broken pipe, interrupt and similar
       conditions that don't indicate an internal error.
 
+    * Add ``.*.swp .*.tmp *,v`` to default ignore patterns.
+
   TESTING:
 
     * Converted black-box test suites from Bourne shell into Python;
@@ -31,7 +32,6 @@
 
 
 bzr-0.0.4  2005-04-22
-*********************
 
   ENHANCEMENTS:
 
@@ -95,7 +95,6 @@
 
 
 bzr-0.0.3  2005-04-06
-*********************
 
   ENHANCEMENTS:
 
@@ -136,7 +135,6 @@
 
 
 bzr-0.0.2.1
-***********
 
   PORTABILITY:
 
@@ -144,7 +142,6 @@
 
 
 bzr-0.0.2  "black cube"  2005-03-31
-***********************************
 
   ENHANCEMENTS:
 
@@ -172,7 +169,6 @@
 
 
 bzr-0.0.1  2005-03-26
-*********************
 
   ENHANCEMENTS:
 
@@ -199,7 +195,6 @@
 
 
 bzr-0.0.0.69  2005-03-22
-************************
 
   ENHANCEMENTS:
 

=== modified file 'bzrlib/__init__.py'
--- a/bzrlib/__init__.py	2005-05-05 02:29:38 +0000
+++ b/bzrlib/__init__.py	2005-05-05 02:46:17 +0000
@@ -28,9 +28,11 @@
 
 DEFAULT_IGNORE = ['.bzr.log',
                   '*~', '#*#', '*$', '.#*',
+                  '.*.swp', '.*.tmp',
                   '*.tmp', '*.bak', '*.BAK', '*.orig',
                   '*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.exe', '*.elc', 
                   '{arch}', 'CVS', '.svn', '_darcs', 'SCCS', 'RCS',
+                  '*,v',
                   'BitKeeper',
                   'TAGS', '.make.state', '.sconsign', '.tmp*']
 



More information about the Pkg-bazaar-commits mailing list