将 master 推送到不同的远程分支 netbeans GIT 集成

Pushing master to different remote branch netbeans GIT integration

我想做一些一开始看起来很简单但使用netbeans似乎不是那么简单的事情 git 集成:

我有一个本地主分支,我想推送到一个远程分支,但是,这里有一个不同的名称,比如 "origin/mymaster"。

我知道如何使用命令行 git 但不知道如何使用 netbeans 集成。我没有使用命令行的可能性,但该项目的其他合作者会并且愿意单独坚持使用 netbeans,并且仍然能够做到这一点。

您是否可以使用 netbeans git 向导来完成此操作?

提前致谢

NetBeans push wizard 包括第 4 步,其中:

At the Update Local References page, choose the branch(es) to be updated in the Remotes directory of your local repository and click Finish.
The specified remote repository branch is updated with the latest state of your local branch.

所以你应该能够select那个阶段的不同分支
由于 OP neneitaly reports 这是不可能的,所以只剩下创建一个具有正确目标名称的本地分支(master 所在的地方)并推送该分支的解决方法。

我最终使用了 VonC 也建议的解决方法。我创建了一个名为 mymaster 的本地分支(这是我想推送到远程的分支名称),然后使用 netbeans 向导推送了那个分支。

它有效,但我更愿意选择直接在 netbeans 中推送 master:origin/mymaster,因为它是您可以在 git 命令行中本地执行的操作。

埃内亚