Skip to content

Instantly share code, notes, and snippets.

@extrimua
Last active April 15, 2021 09:41
Show Gist options
  • Save extrimua/b62a658d25ee5431b59af3f00bae984d to your computer and use it in GitHub Desktop.
Save extrimua/b62a658d25ee5431b59af3f00bae984d to your computer and use it in GitHub Desktop.
Create github repository from command line
curl -u '<username>' https://api.github.com/user/repos -d '{"name": "<reponame>"}'
touch README.md
git init
git add .
git commit -m "init commit"
git remote add origin [email protected]:<username>/<reponame>.git
git push -u origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment