markdown 从私有GitHub仓库下载单个文件。您需要一个访问令牌,如本GitHub帮助文章中所述:https://help.github

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 从私有GitHub仓库下载单个文件。您需要一个访问令牌,如本GitHub帮助文章中所述:https://help.github相关的知识,希望对你有一定的参考价值。

curl --header 'Authorization: token INSERTACCESSTOKENHERE' \
     --header 'Accept: application/vnd.github.v3.raw' \
     --remote-name \
     --location https://api.github.com/repos/owner/repo/contents/path

# Example...

TOKEN="INSERTACCESSTOKENHERE"
OWNER="BBC-News"
REPO="responsive-news"
PATH="scripts/build/tabloid.sh"
FILE="https://api.github.com/repos/$OWNER/$REPO/contents/$PATH"

curl --header 'Authorization: token $TOKEN' \
     --header 'Accept: application/vnd.github.v3.raw' \
     --remote-name \
     --location $FILE
- `-H --header` Extra header to use when getting a web page. You may specify any number of extra headers

- `-O --remote-name` Write output to a local file named like the remote file we get (only the file part of the remote  file  is  used, the path is cut off)

- `-L --location`  If the server reports that the requested page has moved to a different  location  (indicated  with  a Location:  header  and a 3XX response code), this option will make curl redo the request on the new place

以上是关于markdown 从私有GitHub仓库下载单个文件。您需要一个访问令牌,如本GitHub帮助文章中所述:https://help.github的主要内容,如果未能解决你的问题,请参考以下文章

如何使用命令行从私有 github 存储库下载单个原始文件?

Github上图文演示仓库创建

从GitHub repo DownGit下载单个文件夹或目录

docker的私有化仓库harbor搭建

Github不想下载整个仓库 | 单个文件夹下载方式 简单的方法

Github不想下载整个仓库 | 单个文件夹下载方式 简单的方法