Upon brief Google and SO search, I couldn't find any info on this. I am looking at this Github repo which hasn't been updated for years, but there are many forks that are still being developed actively. Is there any way to search through commit messages from different forks of this Github repo network?
Asked
Active
Viewed 161 times
2 Answers
2
Beside the Google search already mentioned, another more precise alternative, if that repo is not too big, is to:
- list all the forks with this API
GET /repos/:owner/:repo/forks
- clone them, and do a
git grep
in each of those local clones.
That way, you are sure to have a complete search.
See also the python frost-nzcr4/find_forks
script.

VonC
- 1,262,500
- 529
- 4,410
- 5,250
0
View the Developer Tools while you're loading the repo network page. In the log you'll notice there's two urls - "meta" and "chunk".
Meta is the (json) list of all the users who are in the network and various properties needed to draw the graph, and "chunk" is the commit log from all the users in the graph, which is used to render the tooltips that come up.
Save these outputs and use your favourite text editor / command line tool to search the commit messages.

frumbert
- 2,323
- 5
- 30
- 61