I am using SVNKit in my application. I have a scenario wherein certain files should be ignored when doing svn operations. i.e. I need to set the svn:ignore property for certain patterns.
How do I do that using SVNKit?
|
feedback
|
|
You could use the ISVNOptions class. It has a If you want to ignore "ignore" within a specific directory, you have to set
To ignore more than one file in a directory,
As soon as property is set, commit directory to make new property value be stored in repository. | ||||
|
feedback
|
|
The argument list is (file, propName, propValue, force, recursive, IPropertyHandler). So if you want to recursively apply a property, just set it 5th argument(recursive) to true. | |||
|
feedback
|