Created
January 1, 2019 15:40
-
-
Save ohld/5838a68bafa43b75671e4876661ba7b1 to your computer and use it in GitHub Desktop.
Create a new GitHub Repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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