The svn:ignore property ignores files that aren't under source control, so they don't come up in svn status
with a ?
(they don't come up at all, and are ignored also if you do an add
)
But what if I want to ignore a file that is under source control? svn:ignore won't ignore it.
For example, what I want to do is set a configuration file, add it to svn, so it's there when the system has to be deployed on a test or live server (it's a web app) but for local environment development, I need to modify the config file to set it up with my local settings.
But I don't want this updates to be commited, so, how can I do?
svn delete
will just remove them from the repository and when doing a svn update
on the test server, it will delete the config file, that's not what I want.