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

后端 未结 2 1276
长情又很酷
长情又很酷 2021-02-07 04:09

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

2条回答
  •  离开以前
    2021-02-07 04:55

    You might want to open the .git\config as a plain file from Visual Studio and edit its contents.

    You'll see that there is a section defining the remote called origin:

    [remote "origin"]
        url = git://foo.org/blah.git
        fetch = +refs/heads/*:refs/remotes/origin/*
    

    If you are using HTTPS (SSL) as a transport layer, then you might want to add:

    [http]
        sslVerify = false
    

    if you are using a self-issued SSL certificate on the server.

提交回复
热议问题