I want to make sure that some ide project metadata files are not updated when I checkout from svn. Unfortunately it has been checked into the project when the project was created, but I have my own version of these files.
Will svn:ignore also ignore the file during update -ie., not update the file ? I am assuming its not going to be the case. If not, is there a way to tell svn to not update a file ?
Why not checkout an older revision of the source tree into a new directory, modify one of the metadata files, do an
update, and see what happens?If nothing else, you should be able to assign all of the non-metadata files to a Subversion changeset and use the
--changesetargument to specify that yourupdate, etc commands should only operate on those files.