如果我有多个遥控器,git push master
有什么影响?
它是否等同于git push origin master
?
答案 0 :(得分:2)
您将收到错误,因为您可能没有名为“master”的存储库。如果只传递一个参数,则将其解释为远程存储库的名称,而不是分支。
也是如此git push ... [<repository> [<refspec>...]]
答案 1 :(得分:1)
仅使用git push
。如果您设置上游参考,它将被推送。使用git push -u
设置上游参考。