Create a new repository on the command line
echo "# <app-name>" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:<username>/<repo>.git //<-- using SSH key
git push -u origin main