NeilK
NeilK

Reputation: 806

How to find the best changes from downstream Github forks?

I am working on a new version of a Github project that was abandoned by the organization that produced it. In the years since it's been abandoned there have been about 200 different forks.

I'd like this new version to answer the needs of the community. I assume that there's some data I can extract from the forks about what people want. Are there techniques or tools to analyze the tree of forks?

Github's network diagram exists, but what about...

Upvotes: 3

Views: 278

Answers (1)

J Doe
J Doe

Reputation: 61

No idea why github hasn't implemented the ability to list forks by popularity and activity. Here is a great script

"Lists forks of a repository containing changes not present in the parent repo. Sorts the results according to the amount of stars earned. Can be used to locate prospective forks for dying projects."

https://github.com/elimohl/find_forks

Its 3 years old, I can't seem to get it working, but someone could fork it.

Upvotes: 2

Related Questions