Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Git Gui。
我已将我的更改推送给大师。
但为了让他们活下去,他们必须被推到master:production.
master:production
单击按钮时,我看不到任何生产选项。源分支中唯一出现的是master。
有什么帮助吗?
在 Git Gui 中无法选择另一个远程分支进行推送,您必须从命令行执行:
git push remote local_branch:remote_branch
所以在你的情况下,这是
git push remote master:production