git remote set-url origin https://hostname/USERNAME/REPOSITORY.git code example
Example 1: git overwrite urlk
# Overwriting an existing git url:
git remote set-url origin <git_url>
Example 2: set remote 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 3: git remote set url
git remote set-url origin new.git.url/here
Example 4: change remote to use ssh git command
git remote add origin git@github.com:nikhilbhardwaj/abc.git