Bhavya Agarwal
Bhavya Agarwal

Reputation: 107

How to search github repo by collaborators

Is there any way I can list all the repositories where a particular user is listed as collaborator. I can see that I can list all the repos owned by a user and all the collaborators in a repo, but can't find a way to get all the repos where a user is a collaborator.

Am I missing something or its not available?

Edit: I intend to do it using Github API v3.

Upvotes: 3

Views: 1009

Answers (1)

patrick
patrick

Reputation: 881

First of all if you go to your github dashboard (https://github.com/dashboard) you can see all the repositories you contribute to on the upper right side.

Still, to answer your question, if you visit a users profile (https://github.com/username), there will be a list of repositories the user contributes to in the upper right corner.

However, there is also the possibility that this list will be empty because the repos that this user contributes to are private. You will not see the private repos in this list, except given the fact that you can access those as well.

Upvotes: 1

Related Questions