How can I tell who forked my repository on GitHub?

GithubGit Fork

Github Problem Overview


Is there a way to know who has forked my repository on GitHub? I can see the number of forks, but I'd like to know who forked my repository and what kind of changes they made to it.

I know they can send me a pull request if they're interested in contributing back to my repository, but is there some other way for me to find out who forked my repository?

Github Solutions


Solution 1 - Github

Clicking the number of forks shows you the full network. From there you can click "members" to see who forked the repo. Example for ExpressJS: https://github.com/expressjs/express/network/members.

enter image description here

Solution 2 - Github

now you can check the forks in Insights -> Forks

Solution 3 - Github

One way I discovered from the browser is attempting to create a pull request and then compare across forks. All the existing forks would show up.

Solution 4 - Github

The accepted answer above helps to see the accounts who forked the repository. In order to meet the other requirement, i.e. see what kind of changes have been made you will need to go to each individual forked repository and then see the compare tab (please refer to the attached picture).enter image description here To see exact details on what files have been actually changed you should click on the compare button shown in the image.

The above process is the right way and can be tedious. In case you want to see the summarized information of how ahead or behind is each forked repository you may use the link https://forkinfo.herokuapp.com/, which I have open sourced here in case you want to edit it as per any specific requirements. It fetches information about how much a fork is ahead or behind the parent fork, by getting that information from homepage of each forked repository (from the part highlighted in the image). This information is generated based on comparison of repositories

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionkbsbngView Question on Stackoverflow
Solution 1 - GithubMatt BallView Answer on Stackoverflow
Solution 2 - GithubdjzhaoView Answer on Stackoverflow
Solution 3 - GithubMouseView Answer on Stackoverflow
Solution 4 - GithuboldmonkView Answer on Stackoverflow