Is it possible to create a remote repo on GitHub from the CLI without opening browser?

I created a new local Git repository: ~$ mkdir projectname ~$ cd projectname ~$ git init ~$ touch file1 ~$ git add file1 ~$ git commit -m ‘first commit’ Is there any git command to create a new remote repo and push my commit to GitHub from here? I know it’s no big deal to … Read more