Created
December 2, 2013 03:41
-
-
Save lzcabrera/7744624 to your computer and use it in GitHub Desktop.
Create a new Github repo via CLI
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
curl -u 'USER' https://api.github.com/user/repos -d '{"name":"REPO"}' | |
# Remember replace USER with your username and REPO with your repository||application name! | |
git remote add origin [email protected]:USER/REPO.git | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment