从多个git遥控器中选择特定来源

时间:2019-05-04 20:10:41

标签: git

在我的本地存储库git remote -v上提供以下输出。

origin  https://gitlab.com/***.git (fetch)
origin  https://gitlab.com/***.git (push)
origin  https://github.com/***.git (push)

回购有2个遥控器,但名称相同。如何只推到一个遥控器? 如果我指定git push origin branch,它仍然会同时推到两个遥控器。 另外,如果我需要重命名其中之一,该怎么做?

1 个答案:

答案 0 :(得分:3)

您可以推送到网址git push https://gitlab.com/example/repo branch,查看其文档,也可以在配置中取消设置各个键,查看其文档,git config --unset remote.origin.url .*theoneidontwant.*