[fossil-users] fossil ignore-glob bug?

2011-03-21 Thread Wilson, Ronald
I have been using the ignore-glob feature for a while now, but it doesn't seem 
to be working for some of the files that I think should be covered by the glob. 
 As you can see, the *.suo and *.ncb files in the project root are properly 
ignored in fossil changes (and fossil clean) but the eur_usd*.sqlite files are 
not ignored.  Is this a mistake in my glob because the filenames have more than 
one extension in them?

RW

PS C:\rev\src\trader> fossil settings
[snip]
ignore-glob  (local)  eur_usd*.sqlite,*.suo,*.ncb
[/snip]

PS C:\rev\src\trader> fossil extras
backtest/eur_usd.01_2011.sqlite
backtest/eur_usd.01_2011.sqlite.backtest.1300516212.sqlite
backtest/eur_usd.01_2011.sqlite.backtest.1300545695.sqlite
backtest/eur_usd.01_2011.sqlite.backtest.1300545806.sqlite
backtest/eur_usd.01_2011.sqlite.backtest.1300545883.sqlite
backtest/eur_usd.01_2011.sqlite.backtest.1300546012.sqlite
backtest/eur_usd.01_2011.sqlite.backtest.130050.sqlite
backtest/eur_usd_jan_2011.ini

PS C:\rev\src\trader> fossil ver
This is fossil version [d5729c31b5] 2011-02-04 03:21:19 UTC


Ron Wilson, Engineering Project Lead
(o) 434.455.6453, (m) 434.851.1612, www.harris.com

HARRIS CORPORATION   |   RF Communications Division 
  assuredcommunications(tm)



<>___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] fossil ignore-glob bug?

2011-03-21 Thread Richard Hipp
On Mon, Mar 21, 2011 at 9:05 AM, Wilson, Ronald  wrote:

>  I have been using the ignore-glob feature for a while now, but it doesn’t
> seem to be working for some of the files that I think should be covered by
> the glob.  As you can see, the *.suo and *.ncb files in the project root are
> properly ignored in fossil changes (and fossil clean) but the
> eur_usd*.sqlite files are not ignored.  Is this a mistake in my glob because
> the filenames have more than one extension in them?
>
>
>
> RW
>
>
>
> PS C:\rev\src\trader> fossil settings
>
> [snip]
>
> ignore-glob  (local)  eur_usd*.sqlite,*.suo,*.ncb
>

I think you need "*/eur_usd*.sqlite" instead of just "eur_usd*.sqlite"



> [/snip]
>
>
>
> PS C:\rev\src\trader> fossil extras
>
> backtest/eur_usd.01_2011.sqlite
>
> backtest/eur_usd.01_2011.sqlite.backtest.1300516212.sqlite
>
> backtest/eur_usd.01_2011.sqlite.backtest.1300545695.sqlite
>
> backtest/eur_usd.01_2011.sqlite.backtest.1300545806.sqlite
>
> backtest/eur_usd.01_2011.sqlite.backtest.1300545883.sqlite
>
> backtest/eur_usd.01_2011.sqlite.backtest.1300546012.sqlite
>
> backtest/eur_usd.01_2011.sqlite.backtest.130050.sqlite
>
> backtest/eur_usd_jan_2011.ini
>
>
>
> PS C:\rev\src\trader> fossil ver
>
> This is fossil version [d5729c31b5] 2011-02-04 03:21:19 UTC
>
>
>
>
>
> Ron Wilson, Engineering Project Lead
>
> (o) 434.455.6453, (m) 434.851.1612, www.harris.com
>
>
>
> HARRIS CORPORATION   |   *RF Communications
> Division   **
> assured**communications**™*
>
>
>
>
>
>
>
> ___
> fossil-users mailing list
> fossil-users@lists.fossil-scm.org
> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
>
>


-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] fossil ignore-glob bug?

2011-03-21 Thread Ron Wilson
On Mon, Mar 21, 2011 at 9:05 AM, Wilson, Ronald  wrote:

>  I have been using the ignore-glob feature for a while now, but it doesn’t
> seem to be working for some of the files that I think should be covered by
> the glob.  As you can see, the *.suo and *.ncb files in the project root are
> properly ignored in fossil changes (and fossil clean) but the
> eur_usd*.sqlite files are not ignored.  Is this a mistake in my glob because
> the filenames have more than one extension in them?
>
>
Also try: eur_usd.*.sqlite

If Fossil is somehow relying on Window's file glob expansion, you might need
multiple globs to get them all:

eur_usd.*,*.sqlite
eur_usd.*,*.*.sqlite
eur_usd.*,*.*.*.sqlite

ronw
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] fossil ignore-glob bug?

2011-03-21 Thread Mike Meyer
On Mon, 21 Mar 2011 09:17:14 -0400
Richard Hipp  wrote:

> On Mon, Mar 21, 2011 at 9:05 AM, Wilson, Ronald  wrote:
> 
> >  I have been using the ignore-glob feature for a while now, but it doesn’t
> > seem to be working for some of the files that I think should be covered by
> > the glob.  As you can see, the *.suo and *.ncb files in the project root are
> > properly ignored in fossil changes (and fossil clean) but the
> > eur_usd*.sqlite files are not ignored.  Is this a mistake in my glob because
> > the filenames have more than one extension in them?
> >
> >
> >
> > RW
> >
> >
> >
> > PS C:\rev\src\trader> fossil settings
> >
> > [snip]
> >
> > ignore-glob  (local)  eur_usd*.sqlite,*.suo,*.ncb
> >
> 
> I think you need "*/eur_usd*.sqlite" instead of just "eur_usd*.sqlite"

I, on the other hand, think he needs eur_usd*.sqlite.* - with a star
to match the data after the sqlite. Unix-style globs don't care about
periods (except at the beginning of the name) in a name.

 http://www.mired.org/consulting.html
Independent Software developer/SCM consultant, email for more information.

O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] fossil ignore-glob bug?

2011-03-22 Thread Wilson, Ronald

I think you need "*/eur_usd*.sqlite" instead of just "eur_usd*.sqlite"



That works.  Thanks.

Ron Wilson, Engineering Project Lead
(o) 434.455.6453, (m) 434.851.1612, www.harris.com
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users