Skip to content

Instantly share code, notes, and snippets.

@james2doyle
Created March 20, 2015 19:42
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save james2doyle/d5fa9ea248055f3c7389 to your computer and use it in GitHub Desktop.
Save james2doyle/d5fa9ea248055f3c7389 to your computer and use it in GitHub Desktop.
Create a repo on Github from the command line
# replace james2doyle with your own github username
function git-create() {
if [ $# -eq 2 ]; then
# name of repo to be created
PROJECTNAME="$1"
DESCRIPTION="$2"
POST="{\"name\":\"$PROJECTNAME\",\"description\":\"$DESCRIPTION\"}"
curl –sS -u 'james2doyle' https://api.github.com/user/repos -d "$POST"
git remote add origin git@github.com:james2doyle/$PROJECTNAME.git
echo "remote origin added"
else
echo "Wrong number of Arguments. \$1 = Name and \$2 = Description"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment