RailsNewbie
RailsNewbie

Reputation: 155

Restricting Access for Collaborators on Github

I have a github repo which I want potential contractors to only view/browse the codebase on Github and NOT download/clone the whole repository. Is it possible to do it on Github?

Upvotes: 1

Views: 407

Answers (1)

VonC
VonC

Reputation: 1328602

You could define an organization, and then teams, because the permission level is richer with organization: see "Permission levels for an organization repository".

But unless the repo is private (and completely invisible), you cannot prevent a pull or a fork.

Upvotes: 1

Related Questions