git:如何指定默认的远程推送分支?
假设我有一个名为“abc”的跟踪分支,它跟踪“origin/master”。
当我在“abc
”上执行git push
时,它将“abc
”推送到“abc
” '.
如何仅使用“git push
”为其指定远程推送分支?
Suppose I have a tracking branch named 'abc
' which tracks origin/master
.
When I'm on 'abc
' and do a git push
, it pushes 'abc
' to 'abc
'.
How do I specify the remote push branch for it with just a 'git push
'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应该能够指定远程分支。
请注意自 git1.8.0 以来添加到
--set-upstream
的-to
< /a>.自 Git1.7.0 起:
should be able to specify the remote branch.
Note the
-to
added to--set-upstream
since git1.8.0.Since Git1.7.0:
没有明确命名的远程分支的“git push”将尝试推送到名为“origin”的站点
"git push" without a remote branch explicitly named will attempt to push to the site named "origin"