Learn basic Git commands to create a new repository and push it to GitHub.


```bash echo β# demo001βΒ Β» README.md git init git add README.md git commit -m βfirst commitβ git branch -M main git remote add origin git@github.com:username/demo001.git git push -u origin main