我在我的硬盘上(本地)克隆的USB键上有一个repo(起源)。我将“起源”转移到NAS,并成功测试了从这里克隆。
我想知道我是否可以在“本地”设置中更改“起源”的URI,所以它现在将从NAS中拖动,而不是从USB键。
到目前为止,我可以看到两个解决方案:
把一切推到USB起源,然后将其复制到NAS(这意味着由于NAS起源的新承诺而付出很多工作);添加一个新的远程到“本地”并删除旧的(我担心我会打破我的历史)。
我在我的硬盘上(本地)克隆的USB键上有一个repo(起源)。我将“起源”转移到NAS,并成功测试了从这里克隆。
我想知道我是否可以在“本地”设置中更改“起源”的URI,所以它现在将从NAS中拖动,而不是从USB键。
到目前为止,我可以看到两个解决方案:
把一切推到USB起源,然后将其复制到NAS(这意味着由于NAS起源的新承诺而付出很多工作);添加一个新的远程到“本地”并删除旧的(我担心我会打破我的历史)。
当前回答
另一种方法是重新命名“旧”起源(在下面的例子中,我简单地称之为旧起源),并添加一个新的。
git remote rename origin old-origin
git remote add origin git@new-git-server.com>:<username>/<projectname>.git
如果你需要推你的地方状态到新的起源:
git push -u origin --all
git push -u origin --tags
其他回答
git remote set-url origin git://new.location
(替代,打开.git/config,搜索 [远程“起源”),并编辑 url = 行。
你可以检查它工作,通过检查远程:
git remote -v
# origin git://new.location (fetch)
# origin git://new.location (push)
接下来的按钮,你将不得不指定新的上流分支,例如:
git push -u origin master
此分類上一篇: GitHub: 更改遠程 URL
导航到本地存储库的项目根,并检查现有远程:
git remote -v
如果您的存储库使用SSH,您会看到这样的东西:
> origin git@github.com:USERNAME/REPOSITORY.git (fetch)
> origin git@github.com:USERNAME/REPOSITORY.git (push)
如果您的存储库使用 HTTPS,您会看到这样的东西:
> origin https://github.com/USERNAME/REPOSITORY.git (fetch)
> origin https://github.com/USERNAME/REPOSITORY.git (push)
取决于 git 远程 -v 的输出,您可以以以下方式更改 URL:
在 SSH 的情况下,您可以从 REPOSITORY.git 更改 URL 到 NEW_REPOSITORY.git 如下:
$ git remote set-url origin git@github.com:USERNAME/NEW_REPOSITORY.git
而在 HTTPS 的情况下,您可以从 REPOSITORY.git 更改 URL 到 NEW_REPOSITORY.git 如下:
$ git remote set-url origin https://github.com/USERNAME/NEW_REPOSITORY.git
注意: 如果您已更改了 GitHub 用户名,您可以按照上述相同的过程更新与您的存储库相关的用户名的更改。
对于那些想要从 Visual Studio 2019 进行此更改的人来说
開啟 Team Explorer (Ctrl + M)
Home > 设置
Git -> 存储器设置
此分類上一篇: Edit
此分類上一篇
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 set-url {name} {url}
git remote set-url origin https://github.com/myName/GitTest.git