How can I find the created date of a project on GitHub?
Basically, I have to find the first commit to see the created date, however, some projects have 500 commits, whi
Syntax:
curl -s https://api.github.com/repos/{:owner}/{:repository} | jq '.created_at'
Example:
curl -s https://api.github.com/repos/NabiKAZ/video2gif | jq '.created_at'
Result:
"2017-04-22T22:58:47Z"