git remote set-url <name> <newurl>
command changes existing remote repository URL.
For example, to switch from a github repository from HTTPS to SSH:
- Change the current working directory to local project.
- List existing remotes in order to get the name of the remote to change.
- Change remote's URL from HTTPS to SSH with the
git remote set-url
command.
- Verify that the remote URL has changed.