using git remote github code example
Example 1: git change remote
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 2: 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