git check url origin code example
Example 1: check git url
# Check existing git url:
git remote -v
Example 2: check git url
without network
git config --get remote.origin.url
with network (detailed)
git remote show origin
# Check existing git url:
git remote -v
without network
git config --get remote.origin.url
with network (detailed)
git remote show origin