git remote add origin https://github.com/oeh77/FastApi_Project1.git
git branch -M main
git push -u origin main
git push -u origin master // where 'master' is branch name
git push --set-upstream origin repository name
$ git push -u origin feature
git push <REMOTENAME> <BRANCHNAME>
git remote set-url --add --push origin some-URL/MyDestinationRepo
echo "# earlycareersweb" >> README.md
git init
git add README.md
git add .
git commit -m "first commit"
git branch -M main
git remote add origin RepoUrl
git push -u origin main