Reputation: 1
I'm working on several asp.Net websites with several web designers. I want only the programmers can checkout the code files ( *.cs in asp.net) and let the designers checkout any other files.
So, I think that filter files by user/extension it's the behavior I need.
Is this possible ? If not, how whould you aproach my issue ?
Upvotes: 0
Views: 1448
Reputation: 10997
With SVN there is no ability to checkout by extension.
If your intention is only to combine some files in one folder - then you can use SVN externals (there are drawbacks, but anyway).
If your intention is to limit access - you should separate code files from other files (move), change project settings, etc and stick to the path based authorization .
Upvotes: 1