git config get origin url code example
Example 1: git view remote url
git remote show origin
Example 2: git config remote.origin.url
# change remote url
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 3: git show remote url
git config --get remote.origin.url