How do I ignore all files within a folder under source control?
/project/published/
is a folder I want to keep
/project/published/some_file(s)
are files/folders I don't want
More Details: Currently when I go to commit changes for my project I see a lot of files that I don't want to. They are files that get published to a folder and I don't need them under source control. I won't ever know the names of these files as they are chosen by users.
I tried to use the property svn:ignore
with value published/*
but that did not work. Any ideas?