Search code examples
gitvisual-studiourlvisual-studio-2013version-control

Change the URL to a remote Git repository via Visual Studio 2013?


Is it possible to modify the URL for a remote Git repository via Visual Studio 2013 if it happens to be set incorrectly? I'm getting the "famous" (and not very helpful) error that says:

"blah, blah...This transport isn't implemented. Sorry."

Is it possible to make this change via the command prompt?

I know the about the command git remote remove but the name of the config should follow and I don't know how to determine what it is.


Solution

  • From the command line, git remote set-url remotename url will do the trick. docs here