Create New Github Repos from the CLI
Today I learned you can use GitHub’s command-line helper Hub to create new GitHub respositories purely on the command line, without visiting github.com in a browser and using the web flow:
# new project name will be taken implicitly from the $CWD
hub create -d "some cool new project"
Love it!