This sounds like the property you are interested in exploiting:
"svn:ignore
The svn:ignore property contains a list of file patterns which certain Subversion operations will ignore. Perhaps the most commonly used special property, it works in conjunction with the global-ignores run-time configuration option (see the section called Config) to filter unversioned files and directories out of commands svn status, svn add, and svn import.
The rationale behind the svn:ignore property is easily explained. Subversion does not assume that every file or subdirectory in a working copy directory is intended for version control. Resources must be explicitly placed under Subversion's management using the svn add or svn import commands. As a result, there are often many resources in a working copy that are not versioned."
The article goes on to explain how to use ignore patterns. You have to set svn:ignore on the file once you've checked it out. If you want to check it back in again, unset svn:ignore, check it in, and then re-set it.
The details for the command are here http://svnbook.red-bean.co
You can probably also find other resources, but I like this one. The SVN:ignore section is about half way down the page.
--
Alain
Main Topics
Browse All Topics





by: cwolvesPosted on 2009-08-11 at 12:04:31ID: 25072234
I'm also perfectly happy for a solution that isn't automatic :)