Création d'un nouveau dépôt sur la ligne de commande

echo "# handydandydevblog" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:githubuserName/urProjectsname.git
git push -u origin main
OctoPussLicker