Creating a github repository out of a local folder

PHOTO EMBED

Wed Mar 10 2021 07:12:49 GMT+0000 (Coordinated Universal Time)

Saved by @hassanms #commandline

git init
git add .
git commit -m "Message"

(Manually create a github repository without a readme file)
git remote add origin https://github.com/hassanms/typescript-practice.git
git branch -M main
git push -u origin main
content_copyCOPY

https://kbroman.org/github_tutorial/pages/init.html