Skip to content

Instantly share code, notes, and snippets.

@srhopkins
Created May 27, 2015 21:53
Show Gist options
  • Save srhopkins/5f6fdc975c047417dfb4 to your computer and use it in GitHub Desktop.
Save srhopkins/5f6fdc975c047417dfb4 to your computer and use it in GitHub Desktop.
Create git repo with github api
#!/usr/bin/env bash
USER=${1}
REPO=${2}
curl -u "${USER}" 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