I have a repository with a bunch of folders, and I want some developers to get only two or three of these folders when they do a check in the repository. How to make folders not show by default, and then add them only if I want to grant access.
I use VisualSVN for the SVN server, and what I did is gain read access to the upper level, then deny access to each subfolder, and then change the read / write ban on the folders that I want each developer had access, This is a pain, because whenever I add a new folder, I have to go in and deny access to it.
I tried just providing read / write in the subfolders, but when they try to check with the parent, it gives them an error. I want developers to have to do validation in a top-level folder.
Here is what I want:
RepoFolder (dev1 checks out this)
- References (this shows to dev1)
- Project1 (this shows to dev1)
- Project2 (this does not show to dev1)
- Project3 (this does not show to dev1)
- Project4 (this does not show to dev1)
source
share