-
-
Save resistorsoftware/592648 to your computer and use it in GitHub Desktop.
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
# | |
# Create a new repo on Github and directly push your initial commit with this shell script | |
# | |
url=https://github.com/api/v2/json/repos/create | |
username=$(git config github.user) | |
token=$(git config github.token) | |
name=${1-$(basename $(pwd))} | |
curl -F login=$username -F token=$token $url -F name=$name -F public=1 1>/dev/null | |
git remote add origin [email protected]:$username/$name | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment