git command to check origin url code example
Example 1: check git url
# Check existing git url:
git remote -v
Example 2: see git origin
git remote -v
Example 3: git show origin
git config --get remote.origin.url
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