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