Possible Duplicate:
ignoring folders in mercurial
I'm trying to put together what I thought would be a simple ignore filter, but can't seem to get it working.
I have a /database directory in my code that contains files that change regularly and are not part of the source. I want that directory (and all the files inside of it) ignored by Mercurial.
How can I make this work?
I've tried adding the following:
^DATABASE/
and the database directory is not ignored.
C:\CDM_Dev\cdm>hg status
M .hgignore
M DATABASE\CDM001.MEM
M DATABASE\audittr.CDX
M DATABASE\audittr.DBF
M Program\librptte.FXP
M Program\libupdat.FXP
M Program\rpttenan.FXP
Any other ideas?