github repository url code example
Example 1: add url git
$ git remote add origin https://github.com/user/repo.git
# Set a new remote
$ git remote -v
# Verify new remote
> origin https://github.com/user/repo.git (fetch)
> origin https://github.com/user/repo.git (push)
Example 2: how to get github url
git remote -v
git config --get remote.origin.url
git remote show origin
git config --get remote.origin.url