how to remote git repository code example
Example 1: github remote
echo "# HarryFoods" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin < repo url >
git push -u origin main
Example 2: git remote
git remote add origin https://github.com/xxx/xxx-new.git
git branch -M main
git push -u origin main