Skip to content

Instantly share code, notes, and snippets.

@nurv
Forked from yefim/create-repo.sh
Created May 4, 2012 13:49
Show Gist options
  • Save nurv/2594902 to your computer and use it in GitHub Desktop.
Save nurv/2594902 to your computer and use it in GitHub Desktop.
Create a new GitHub repo
#!/bin/bash
read -s -p "GitHub password: " pass
# I assume the GitHub API and authentication works because I don't want to parse JSON
curl -u "yefim323:$pass" https://api.github.com/user/repos -d "{\"name\":\"$1\"}" > /dev/null
git remote add origin git@github.com:yefim323/$1.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment