tags:

views:

24

answers:

2

I have a project folder with sources, headers, resources, etc. Most files are subject to source control via SVN, but some are not. Is there a way to designate a file as not subject to source control, ever, so that "svn status" does not throw a line with a question mark next to that file?

+3  A: 

yes, add it as a value of the svn:ignore property on the containing folder.

For example with this structure:

SomeDirectory
SomeDirectory\somefile.txt

you can run

svn propset svn:ignore somefile.txt SomeDirectory
Sander Rijken
+1  A: 

+1 for the svn propset svn:ignore command.

In addition, if you are using TortoiseSVN you can also right-click a file in the commit window when you are committing your changes and choose to ignore that file.

glenc
See the tag - it's on MacOS X. But thanks all the same.
Seva Alekseyev