set remote url git command code example
Example 1: get git remote url
git config --get remote.origin.url
Example 2: git config remote.origin.url
# change remote url
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 3: git change remote
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 4: set origin url git
git remote add origin <git_url>