1. Using the graphic interface on the github website, create your first repository.
OR
2.1 (No readme)
2.2 (With readme)
create a new repository on the command line
echo "# my_first_repository" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/MEBZMasondo/my_first_repository.git
git push -u origin main
TO PUSH TO MAIN YOU MAY USE : git push
TO PUSH TO BRANCH YOU MAY USE :