Skip to content

Instantly share code, notes, and snippets.

@ohld
Created January 1, 2019 15:40
Show Gist options
  • Save ohld/5838a68bafa43b75671e4876661ba7b1 to your computer and use it in GitHub Desktop.
Save ohld/5838a68bafa43b75671e4876661ba7b1 to your computer and use it in GitHub Desktop.
Create a new GitHub Repository
GITHUB_TOKEN='token_with_public_or_private_repo_rights'
# you can create your token here:
# https://github.com/settings/tokens/new
DATA='{
"name":"b2",
"description":"Block 2",
"homepage":"https://morejust.store/",
"private":false,
"has_issues":false,
"has_projects":false,
"has_wiki":false,
"license_template":"unlicense"
}'
URL=https://api.github.com/user/repos?access_token=$GITHUB_TOKEN
echo $DATA | curl -d @- -X POST $URL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment