In my “application” dir, I have a “logs” directory and a “config” directory, both under version control, both having locally modified files, both told to ignore these files. However only one of the ignores works:
> pwd
website.com/trunk/application/
> svn propget -R svn:ignore
logs - *.log
configs - *.ini
> svn status
M logs/website.log
What am I doing wrong? Thanks for any pointers.
Apart from Daniel Gehringer’s answer, which is part of the solution,
svn:ignoreonly works for non-versioned files. When files are versioned, it’s expected that they show statusMwhen they’re changed.