Answers for "github api create repository"

3

create a repo using github api

#On your Github account: go to Settings -> Developer Settings -> Personal Access Token Under OAuth Apps. 
#Now, Generate a New Access token with Required privileges enabled. Ignore This if you already have one. 
#Replace ACCESS_TOKEN with Token and NEW_REPO_NAME with your New Repository Name in the command below:

curl -H "Authorization: token ACCESS_TOKEN" --data '{"name":"NEW_REPO_NAME"}' https://api.github.com/user/repos
Posted by: Guest on June-24-2020
2

github api tutorial

GitHub REST API Tutorial – REST API Support In GitHub=

https://www.softwaretestinghelp.com/github-rest-api-tutorial/
Posted by: Guest on September-07-2021

Code answers related to "github api create repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language