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

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

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

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


当前回答

首先,您需要输入此命令以查看现有远程

远程 -v

然后第二,你需要输入这个命令,以更改“起源”远程的URL

git 远程设置 URL 起源 <paste 您的 GitHub URL>

其他回答

此分類上一篇

麻烦解决:

您可能遇到这些错误,当尝试更改一个远程。

这个错误意味着你试图改变的远程不存在:

git remote set-url sofake https://github.com/octocat/Spoon-Knife fatal: 没有这样的遥远的“sofake”

确保您正确输入了远程名称。

参考 : https://help.github.com/文章/变更-a-remote-s-url/

进入文件夹/repo,您要更改并执行下面的命令:

下面的命令将改变 repo 的 git fetch URL。

git remote set-url origin <your new url>.git

下面的命令将改变 repo 的 git push URL。

git remote set-url --push origin <your new url>.git

下面的命令检查上面的变化是否反映

git remote -v
git remote -v
# View existing remotes
# origin  https://github.com/user/repo.git (fetch)
# origin  https://github.com/user/repo.git (push)

git remote set-url origin https://github.com/user/repo2.git
# Change the 'origin' remote's URL

git remote -v
# Verify new remote URL
# origin  https://github.com/user/repo2.git (fetch)
# origin  https://github.com/user/repo2.git (push)

更改远程的URL

正如我们在这里看到的那样,

$ git remote rm origin
$ git remote add origin git@github.com:aplikacjainfo/proj1.git
$ git config master.remote origin
$ git config master.merge refs/heads/master

这个答案属于一个问题,我无法在其他地方找到答案:做这个项目在Gitlab,有一个子组。

git remote add origin git@gitlab.com:group/subgroup/project.git

与所有有“用户名”而不是“组”的答案相反,没有一个通过SSH为我工作。

git remote add origin https://username@gitlab.com/group/subgroup/project.git

请注意两者之间的区别是 ".com:group" 和 ".com/group" 。

如果这不是直接从盒子上工作,我使用了HTTPS方法之前成功使用SSH一个,可能是一个因素,但我不能生气尝试并重复它没有它。