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
If you are not interested in the exact creation date, and just would like to know how old a repo roughly is. You can go to Insights
, then Contributors
. For example, first commit for react was pushed on May 26 2013.
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"
I created a user script that shows the creation date directly on the GitHub page of the repo: https://openuserjs.org/scripts/cosenal/GitHub_Repo_Dates
You can also use Github's new GraphQL API:
query {
repository(owner: "graphql", name: "graphql-js") {
name
createdAt
}
}
I've written a bookmarklet for this, It may come in handy. You can even know the details of private or private - organization repositories with a simple workaround.
GitHub repository size, creation date bookmarklet | Source Code
This question is old, but i was trying to get the date from Github without any external plugins. After went online and digging deeper and trying to find soemthing else and came across this solution. Here's the answer.
Settings
Security
repo.create
and till popup with more detailed information about the repository.