jon_simon
jon_simon

Reputation: 380

How to see when my git repo was forked?

I recently noticed that one of my github repos has been forked. I can see the user who forked it under the 'Members' tab, but the graph shown under the 'Network' tab is completely linear, with no indication of the fork shown. Is there any way to determine on which date this repo was forked?

Upvotes: 4

Views: 1808

Answers (2)

From the GitHub repository page if you go to

The Insights tab -> then click Network in the list

the 'Network Graph' appears to have a separate row for each repository. You can scroll back and it will show one branching off to start the new row.

Inconvenient if there are many commits in the branch you are trying scroll back through to see the branch date.

Upvotes: 1

pedrorijo91
pedrorijo91

Reputation: 7865

Try using github API (developer.github.com/v3/repos/forks/#list-forks)

there's a "created_at" field, it can be what you are looking for

Upvotes: 5

Related Questions