简体   繁体   中英

How to create repository for organization using github-api?

I'm using github-api , an npm plugin, to create and manage repositories in node.js. I was able to create repositories for a user, and read a user's organizations, but I could not find out how to create a repository for an organization. I looked through the documentation but I am still confused as to how to create the repository.

Thanks in advance!

It seems that this client doesn't support repository creation for organizations. There is only createRepo for user .

The request for the user looks like:

POST /user/repos

and for the organization:

POST /orgs/:org/repos

where :org is the organisation name.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM