how to check git remote repository code example
Example 1: git view remote url
git remote show origin
Example 2: git check upstream url
git remote show origin
Example 3: see git origin
git remote -v
Example 4: 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 5: see name of origin + git
git remote -v