在 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