<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    On 07/04/11 12:39, Andrew Bennetts wrote:
    <blockquote
      cite="mid:20110407033950.GN22356@aihal.home.puzzling.org"
      type="cite">
      <pre wrap="">Steve Franks wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">I've recently (last month or so) started seeing "bzr add" failing to
place files under source control.  The latest candidates are
TsipCallbacks.cpp, and TsipCallbacks.hpp.  My .bazaar/ignore file is
</pre>
      </blockquote>
      <pre wrap="">
I think these are probably the lines involved:

</pre>
      <blockquote type="cite">
        <pre wrap="">*back*
*bak*
*Bak*
*Back*
</pre>
      </blockquote>
      <pre wrap="">
In general, try “bzr ignored” to see what is being ignored, and which
rule is causing it.

-Andrew.


</pre>
    </blockquote>
    <br>
    You could also reduce the complete set:<br>
    <blockquote type="cite">
      <pre wrap="">bak*
back*
BACK*
<b class="moz-txt-star"><span class="moz-txt-tag">*</span>back<span class="moz-txt-tag">*</span></b>
<b class="moz-txt-star"><span class="moz-txt-tag">*</span>bak<span class="moz-txt-tag">*</span></b>
<b class="moz-txt-star"><span class="moz-txt-tag">*</span>Bak<span class="moz-txt-tag">*</span></b>
<b class="moz-txt-star"><span class="moz-txt-tag">*</span>Back<span class="moz-txt-tag">*</span></b>
</pre>
    </blockquote>
    <br>
    to a single regex:<br>
    RE:(?i).*(back|bak).*<br>
    <br>
    Cheers,<br>
    David<br>
  </body>
</html>