Re: [fossil-users] New --ignore option

2010-03-16 Thread Jeremy Cowgar
On 3/16/2010 8:39 AM, D. Richard Hipp wrote: > fossil setting ignore-glob > > BTW... Thank you for this change! This has always been the most annoying thing for me when using fossil. It's a great addition. Thanks again! Jeremy ___ fossil-use

Re: [fossil-users] New --ignore option

2010-03-16 Thread Jeremy Cowgar
On 3/16/2010 8:39 AM, D. Richard Hipp wrote: > fossil setting ignore-glob MinGW's bash must be expanding the asterisk for some reason: $ fossil setting ignore-glob 'build/*' Usage: c:\Development\Tools\Fossil\fossil.exe setting ?PROPERTY? ?VALUE? However: $ fossil setting ignore-glob 'build/*,*

Re: [fossil-users] New --ignore option

2010-03-16 Thread D. Richard Hipp
On Mar 16, 2010, at 8:22 AM, Jeremy Cowgar wrote: > > Also, once this problem is fixed, does it make sense to store this > option in the database? Maybe in the Behavior section of the setup > web page? > fossil setting ignore-glob D. Richard Hipp d...@hwaci.com ___

Re: [fossil-users] New --ignore option

2010-03-16 Thread Jeremy Cowgar
Hm, weird. It works under cmd.exe, but not the MinGW bash shell. $ fossil extras --ignore 'build/*' CHANGES.txt build/VERSION.h build/add.o build/add_.c build/allrepo.h build/allrepo.o build/allrepo_.c I couldn't come up with any combination to make that work. The shell is bash, I am assuming t

Re: [fossil-users] New --ignore option

2010-03-16 Thread D. Richard Hipp
On Mar 16, 2010, at 8:22 AM, Jeremy Cowgar wrote: > For my fossil checkout, I do: mkdir build && cd build && make -f ../ > Makefile > > So, from my root fossil directory, I do fossil extras --ignore build > but > still wind up with everything under the build directory. fossil extra --ig

[fossil-users] New --ignore option

2010-03-16 Thread Jeremy Cowgar
For my fossil checkout, I do: mkdir build && cd build && make -f ../Makefile So, from my root fossil directory, I do fossil extras --ignore build but still wind up with everything under the build directory. I can do --ignore *.o and get rid of the .o files in the build directory but it still sh