MATTHEW
MATTHEW

Reputation: 141

How to setup Azure DevOps Repo Read Only Access

Objective: Allow different clients access to only read/pull from my private repo.

Overview: Listed are the different options that I am aware of:

Question: What is the best practice to provide access to an external user to only access the private Azure DevOps repo?

Note: I have seen this link and did not know if there were other options.

Upvotes: 7

Views: 14796

Answers (1)

LoLance
LoLance

Reputation: 28126

To make the user only have read access to all repos in one project:

You may consider making the user a reader instead of contributor or Project Administrators, so the user can have only read access to the repos in one project.

Organization Settings=>Users(General)=>Manage user=> select Project reader.

enter image description here

More details about project readers you can check this document.

To make the user only have read access to one special repos in one project:

We can control related permissions from Project Settings=>Repositories(Repos)=>Version Control Administrators:

enter image description here

Hope all above helps :)

Upvotes: 7

Related Questions