Git: Change remote URL
There is some way to change the remote URL in Git.
1. The git command
1. The git command
git remote set-url origin <URL>2. Remove the old URL then add new one
git remote rm origin3. Edit the config file
git remote add origin <URL>
Find more details in https://help.github.com/articles/changing-a-remote-s-url/
Comments