79121436

Date: 2024-10-24 10:20:56
Score: 2
Natty:
Report link

How complicated answers !! It's easy to get the email adress this way :

_

curl -s 'https://api.github.com/repos/$owner/$project/commits' | jq '.[0] | .commit.author.email'

It will output the email address of the last commiter .

For example, you can this way extract the 15 email of the 15 last commiters of chromium project :

curl -s 'https://api.github.com/repos/chromium/chromium/commits?per_page=15' | jq '.[] | .commit.author.email'

Kind regards

nbanba

Reasons:
  • Blacklisted phrase (1): regards
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: nbanba