使用Git Hub开发人员API下载源代码文件

时间:2017-03-19 08:24:32

标签: github-api

使用Github developer API,是否可以下载特定Github存储库的最新源代码文件?

1 个答案:

答案 0 :(得分:0)

是的,您使用Get archive link

GET /repos/:owner/:repo/:archive_format/:ref

例如:

curl -L https://api.github.com/repos/octokit/octokit.rb/tarball > octokit.tar.gz

该示例未指定ref,默认情况下,它将是存储库的默认分支(通常为master