On Mon, 21 Mar 2011 09:17:14 -0400 Richard Hipp <[email protected]> wrote:
> On Mon, Mar 21, 2011 at 9:05 AM, Wilson, Ronald <[email protected]> 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. <mike -- Mike Meyer <[email protected]> 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 [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

