gpt4 book ai didi

git - 如何通过github API在github中创建仓库?

转载 作者:太空狗 更新时间:2023-10-29 12:58:02 26 4
gpt4 key购买 nike

我正在尝试使用 github api 在特定组织下创建存储库。我在看这个 site其中讨论了如何在特定组织下创建存储库。

Create a new repository in this organization. The authenticated user must be a member of the specified organization.
POST /orgs/:org/repos

现在我无法理解在特定组织下创建存储库需要使用的完整 URL 是什么?我有我的用户名和密码,可用于通过 https url 在组织下创建存储库。

我的github实例url是这样的-https://github.host.com

我希望我的存储库在创建后是这样的 -

https://github.host.com/Database/ClientService

在组织下创建存储库时,我的 curl 命令是什么样的?

最佳答案

转到 设置 -> 开发人员设置 -> 个人访问 token 在 OAuth 应用程序下。现在,生成启用所需权限的新访问 token 。 如果你已经有一个,请忽略这个。

用户帐号:

在以下命令中将 ACCESS_TOKEN 替换为 Token 并将 NEW_REPO_NAME 替换为您的新存储库 Name:

curl -H "Authorization: token ACCESS_TOKEN" --data '{"name":"NEW_REPO_NAME"}' https://api.github.com/user/repos

组织:

curl -H "Authorization: token ACCESS_TOKEN" --data '{"name":"NEW_REPO_NAME"}' https://api.github.com/orgs/ORGANIZATION_NAME/repos

关于git - 如何通过github API在github中创建仓库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28385884/

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