#todayilearned

by @jm3 · aka John Manoogian3

Frequent, bite-size mini-milestone updates as I fast-forward merge* my front-end web development skills up to 2019 levels. Learn more

Create New Github Repos from the CLI

Posted at — Jul 17, 2019

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!