gpt4 book ai didi

git - 如何使用 CURL 上传 github Assets 文件

转载 作者:太空狗 更新时间:2023-10-29 14:36:53 25 4
gpt4 key购买 nike

我想将我桌面上名为“hello.txt”的文件上传到我的 git 存储库,该存储库有一个版本。我该怎么做呢?我阅读了 git 文档,但它是这样说的:

POST https://<upload_url>/repos/:owner/:repo/releases/:id/assets?name .如何在 CURL 中执行此操作。我不明白这一点。

如何将此文件作为发布 Assets 发布到我的 github 发布?谢谢

最佳答案

curl \
-H "Authorization: token $GITHUB_TOKEN" \
-H "Content-Type: $(file -b --mime-type $FILE)" \
--data-binary @$FILE \
"https://uploads.github.com/repos/hubot/singularity/releases/123/assets?name=$(basename $FILE)"

关于git - 如何使用 CURL 上传 github Assets 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37786539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com