Reputation: 111
Is it possible to give add-new as well as and modify access to a user and only add new file access to other user? In short, other user should not be able to modify anything once he commits a file to SVN. Do we have this type of access control in SVN?
As far as I know it can only be read or read\write. Please let me know if it is possible.
Upvotes: 1
Views: 114
Reputation: 15525
Short answer: no, it is not possible.
Long answer: There are a lot of reasons why this approach will fail at the end, here are some of them:
Sorry, I don't think you should do that. Perhaps you could add some of the application context, so we could understand why it is reasonable in your situation.
Upvotes: 0
Reputation: 80771
You could do such things with the svn pre-commit hook scripts.
You could find a good example of pre-commit hook here.
Upvotes: 1