Create new git with github repo from command line
gh repo create --source=. --public
git init -b main
git add . && git commit -m "initial commit"
git remote add origin git@github.com:jamesmaino/<REMOTE_PATH>.git
git push
gh repo create --source=. --public
git init -b main
git add . && git commit -m "initial commit"
git remote add origin git@github.com:jamesmaino/<REMOTE_PATH>.git
git push