Reputation: 11
Your quick help will be highly appreciated...
I have created a project in TFS 2018, In this project we have multiple folders as every folder is related a to a component (Each component will have separate code skeleton as well) in the application.
Every folder will have their separate admin... an admin of a folder (e.g. admin of 'Gate' folder should not be able to change anything in another folder except gate.)
In Add. to admin, users also restricted to particular/allowed folder. How we can manage such folder specific restrictions within a project???
A screenshot for project directory is Image for Sample Project Dir.attached.
Upvotes: 1
Views: 352
Reputation: 51103
For TFVC it's available, however there is some differences between TFVC and Git.
TFVC and Git have different security models so it's not possible to lock down a specific path in a Git repo like you do in TFVC. With Git repos in TFS you could either:
According to your code, seems you are using git as your source control, you may have to use above solution as workaround.
Upvotes: 1
Reputation: 16048
TFS with GIT does not support permissions for folders. I think, you may consider to use TFVC as version control or to use a separate git repo for each component (TFS supports multiple git repo in one team project Exercise 7: Managing repositories).
Upvotes: 1