Reputation: 946
We are using Visual Studio TFS (seems like it is renamed to Azuredevops, isn't it?) Is it possible to create there a private git repository?
I have checked https://learn.microsoft.com/en-us/azure/devops/repos/git/auth-overview?view=vsts and there is some authentication.
How to set up privacy for git repository on vsts?
Upvotes: 2
Views: 839
Reputation: 1897
Yes the new brand name for VSTS is Azure DevOps.
To create a private repository the project admin can hide the repository from the users who are handling the project by following this :
Goto Repositories->Select Repo(Make sure that the user(s) that need to restricted are added to the project as members as well as on repo) -> Select user -> Set Read To Deny
UPDATE:
To make a repo private from outside world u can just create the project as private. The repository is not segregated, it is part of the project. At repo level you can hide repo to make them private as shown above.
Upvotes: 2