TFSSecurity to change git branch permissions

£可爱£侵袭症+ 提交于 2019-12-02 17:18:10

问题


I am implementing the TFS Security commands to change a git master branch acess control permissions to DENY for contribute field.

Below is the command I am using:

/tfssecurity.exe /a+ GitRepositories repositories/[543473b8-6186-42b3-bdab-b22bc44cc8f8/] GenericContribute n:'"[Projectname]\TFSGroup'" DENY /collection:CollectionURL"

I am using powershell 3.0 for this project and I get below error

Error: The security namespace GitRepositories does not exist.

Could someone help me with this?


回答1:


You missed a blank space in "Git Repositories" name space. Try following:

tfssecurity.exe /a+ "Git Repositories"



回答2:


According to the error info, you are implementing with a not exist namespace.

You can use tfssecurity /a command to view a list of namespaces at the server level

The namespace that contains the group from which you want to remove the user or group. You can also use the tfssecurity /a command to view a list of namespaces at the server level, the collection level, and the project level.

More detail info of this command, please refer the link from MSDN: Change groups and permissions with TFSSecurity



来源:https://stackoverflow.com/questions/37491082/tfssecurity-to-change-git-branch-permissions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!