Take folder files, inside an SVN working copy, running in Linux. The folder was set to be ignored, with the commands:
svn propset svn:ignore * 'files'svn propset svn:ignore 'default/files'- and a few other combination, all valid AFAIK
However, the setting just doesn’t kick it. If the repository is accessed with a dektop client (ie Cornerstone on Mac OS) the folder is correctly reported as ignored.
I am scratching my head real hard here.
Thanks.
The answer that cleared it out for me is in this comment:
If the files are already under version control, they will never be ignored.
If you want to ignore a directory
files, you need tosvn propset svn:ignore fileson its PARENT directory, not the directory itself.e.g.
Edit
If there are files within this folder that are under version control, Subversion will NOT ignore them even if the folder is ignored. You will need to remove them from version control (i.e.
svn delete) and then they will be ignored.A file being under version control takes precedence over any ignore lists that may include it.