How can I find the latest commit from the forked repositories on github?

For example, I found a framework that is no longer supported, but many forks. I only want to see the last forks. The network graph is not available if it is large.

enter image description here

+3


source to share


2 answers


You can do it with curl:

curl -X GET https://api.github.com/repos/<owner>/<repo>/forks

      

For example angular forks:



curl -X GET https://api.github.com/repos/angular/angular/forks

      

You can add a collation option ?sort=<oldest|newest|stargazers>

, but the default is newest

.

+1


source


The Github API can display forks, and the default order is newest

.



0


source







All Articles