Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I check who has write access to a public organization's repository on Github?

I am trying to find out users who have write access to a repository or a particular directory in the repo (especially for huge code bases). How do I find that out from Github's website?

like image 770
Krish Munot Avatar asked Apr 20 '16 06:04

Krish Munot


People also ask

How can I see who has access to my GitHub repository?

You can see a combined overview of teams and people with access to your repository in your repository settings. For more information, see "Managing teams and people with access to your repository."

Do collaborators have write access GitHub?

Collaborators on a personal repository can pull (read) the contents of the repository and push (write) changes to the repository. Note: In a private repository, repository owners can only grant write access to collaborators. Collaborators can't have read-only access to repositories owned by a personal account.

Who can see public repository GitHub?

A public repository is visible to the public internet. You can choose to make the repository either public or private. Public repositories are visible to the public, while private repositories are only accessible to you, and people you share them with.


1 Answers

The tab "people" of an organization (such as dolores) will list the public members.

Note that the page "Permission levels for an organization" shows that only members and owners can see all members of an organization.
A non-member would see only the public members.

You can check out the GitHub API Organization member for more details.

like image 112
VonC Avatar answered Nov 02 '22 06:11

VonC