Skip to content

Instantly share code, notes, and snippets.

@adampats
Created November 18, 2015 01:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save adampats/1c1257d58c7c753213a3 to your computer and use it in GitHub Desktop.
Save adampats/1c1257d58c7c753213a3 to your computer and use it in GitHub Desktop.
Create GitHub repo from command line and push
# Personal Access Token required - go here: https://github.com/settings/tokens
repo="newrepo"
gh_user="adampats"
gh_token="mytoken"
curl -u "$gh_user:$gh_token" https://api.github.com/user/repos -d '{"name":"'$repo'"}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment