'How can I change the origin remote in VSCode?
VS Code is my actual IDE and git client for all my projects. I'd like to change the origin remote of an actual repository.
How can i do it?
Solution 1:[1]
It can be done over the terminal. (VS code has a terminal)
Go to the root of the directory.
List your existing remotes in order to get the name of the remote you want to change.
$ git remote -v origin [email protected]:USERNAME/REPOSITORY.git (fetch) origin [email protected]:USERNAME/REPOSITORY.git (push)
Change your remote's URL from SSH to HTTPS with the git remote set-url command.
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Verify that the remote URL has changed.
$ git remote -v origin https://github.com/USERNAME/REPOSITORY.git (fetch) origin https://github.com/USERNAME/REPOSITORY.git (push)
Solution 2:[2]
You can do it using GUI with the following steps
- Click on Source Control on the sidebar and click on more actions
- Go to Remote and use the options Add Remote and Remove Remote
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | s3c |
Solution 2 | Ravindra Gullapalli |