在我的本地存储库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
,它仍然会同时推到两个遥控器。
另外,如果我需要重命名其中之一,该怎么做?
答案 0 :(得分:3)
您可以推送到网址git push https://gitlab.com/example/repo branch
,查看其文档,也可以在配置中取消设置各个键,查看其文档,git config --unset remote.origin.url .*theoneidontwant.*
。