user1092457
user1092457

Reputation: 1

Tortoise SVN, how to filter checkout files by extension

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

Answers (1)

pmod
pmod

Reputation: 10997

  1. With SVN there is no ability to checkout by extension.

  2. If your intention is only to combine some files in one folder - then you can use SVN externals (there are drawbacks, but anyway).

  3. 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

Related Questions