【发布时间】:2018-10-20 09:29:24
【问题描述】:
我想获取 GitHub 提交的短哈希/sha,有没有办法使用 GitHub API 获取短哈希? 我无法在官方文档页面上找到任何内容。
【问题讨论】:
标签: github-api
我想获取 GitHub 提交的短哈希/sha,有没有办法使用 GitHub API 获取短哈希? 我无法在官方文档页面上找到任何内容。
【问题讨论】:
标签: github-api
这个技巧对我有用:
curl -s -L https://api.github.com/repos/:ORG/:REPO/git/refs/heads/master | grep sha | cut -d '"' -f 4 | cut -c 1-7
【讨论】: