简述:
GitHub的web界面本身没有查看仓库创建时间的选项,但我们有确定开源项目发布时间等需求,页面上只能靠后续pull requests的时间大致判断,不够准确。
方案:
可使用 github 的 api 查询项目创建时间:
格式: https://api.github.com/repos/{:owner}/{:repository}
例子: https://api.github.com/repos/tensorflow/hub
请求api可以得到一个 JSON 格式的信息。其中有个字段为 created_at,即为仓库创建时间。文章来源:https://uudwc.com/A/6Xmzk
1、在浏览器地址栏输入 上述URL地址,然后在返回结果页面搜索 created_at,可以看到对应的创建时间。
2、或命令行使用grep获取对应字段信息:文章来源地址https://uudwc.com/A/6Xmzk
curl -k https://api.github.com/repos/tensorflow/hub | grep created_at