Skip to content

Instantly share code, notes, and snippets.

@scorpiodawg
Created May 4, 2018 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scorpiodawg/bcd5c6171e79ec196492a9cea6c3f2ef to your computer and use it in GitHub Desktop.
Save scorpiodawg/bcd5c6171e79ec196492a9cea6c3f2ef to your computer and use it in GitHub Desktop.
Github Create Project from bash
#U sage: gcreate userName repoName "Description if any"
gcreate () {
curl -u $1 https://api.github.com/user/repos -d "{\"name\": \"$2\", \"description\": \"$3\"}"
}
@scorpiodawg
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment