在CI服务器上,我想获取一个在Github上维护的配置文件,以便可以在许多作业之间共享它。我正在尝试通过curl获取此文件,但是这些方法都失败了(我得到了404):
# As advised by the oAuth docs
curl -H 'Authorization: token the_token' -L -o setup.sh https://raw.github.com/org/repo/file
# The url of the raw file after clicking to view it
curl -L https://raw.github.com/org/repo/file?login=username&token=the_token
curl -H 'Accept: application/vnd.github.v3.raw' https://api.github.com/repos/owner/repo/contents/path
将返回原始文件。