How to find the created date of a repository project on GitHub?

后端 未结 8 1877
心在旅途
心在旅途 2021-01-29 19:41

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

8条回答
  •  無奈伤痛
    2021-01-29 19:58

    You can also use Github's new GraphQL API:

    query { 
      repository(owner: "graphql", name: "graphql-js") {
        name
        createdAt
      }
    }
    

提交回复
热议问题