我在我的硬盘上(本地)克隆的USB键上有一个repo(起源)。我将“起源”转移到NAS,并成功测试了从这里克隆。

我想知道我是否可以在“本地”设置中更改“起源”的URI,所以它现在将从NAS中拖动,而不是从USB键。

到目前为止,我可以看到两个解决方案:

把一切推到USB起源,然后将其复制到NAS(这意味着由于NAS起源的新承诺而付出很多工作);添加一个新的远程到“本地”并删除旧的(我担心我会打破我的历史)。


当前回答

对于我来说,接受的答案只在Fetch的情况下工作,但不是拖动。

git remote set-url --push origin new.git.url/here

此分類上一篇: fetch URL:

git remote set-url origin new.git.url/here

要更新 pull URL:

git remote set-url --push origin new.git.url/here

其他回答

使用 gitbash git 远程 rm 起源命令删除起源 现在使用 gitbash git 远程 添加起源 添加新起源(从您的项目存储库中复制 HTTP 地址)完成

如果您想在原始URL中设置用户名和密码,您可以遵循下面的步骤。

输出密码在变量将避免与特殊字符的问题。

步骤:

export gituser='<Username>:<password>@'
git remote set-url origin https://${gituser}<gitlab_repo_url> 
git push origin <Branch Name>

从您的 repo 终端写下下下面的命令:

git remote set-url origin git@github.com:<username>/<repo>.git

请参阅此链接,以获取有关更改远程URL的详细信息。

此分類上一篇: git remote set-url {name} {url}

git remote set-url origin https://github.com/myName/GitTest.git

移除远程

使用 git 远程 rm 命令从您的存储库中删除远程 URL。

    $ git remote -v
    # View current remotes
    > origin  https://github.com/OWNER/REPOSITORY.git (fetch)
    > origin  https://github.com/OWNER/REPOSITORY.git (push)
    > destination  https://github.com/FORKER/REPOSITORY.git (fetch)
    > destination  https://github.com/FORKER/REPOSITORY.git (push)

    $ git remote rm destination
    # Remove remote
    $ git remote -v
    # Verify it's gone
    > origin  https://github.com/OWNER/REPOSITORY.git (fetch)
    > origin  https://github.com/OWNER/REPOSITORY.git (push)