Home is where the command line is
Below is a step by step process to create a GitHub repo from the command line. Before following these steps, create and navigate to the folder that will host the repository.
git init
echo "# Short project description" > README.md
git add README.md
git commit -m "Initial commit"
curl -u '<YOUR_GITHUB_USERNAME>' https://api.github.com/user/repos -d '{"name": "<REPO_NAME>"}'
git remote add origin [email protected]:<YOUR_GITHUB_USERNAME>/<REPO_NAME>.git
git push -u origin master