How do I ignore all files within a folder under source control?
/project/published/ (folder I want to keep)
/project/published/some_file(s) (files/folders i don't want)
More Details: Currently when I go to commit changes for my project I see allot 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?
Thanks