如何使用JGit为新的本地分支设置上游分支

时间:2013-03-26 13:56:43

标签: eclipse git jgit

我使用以下代码从origin/master创建一个新分支:

CreateBranchCommand branchCmd = git.branchCreate();
branchCmd.setForce(true);
branchCmd.setName("newFeatureBranch");
branchCmd.setUpstreamMode(SetupUpstreamMode.SET_UPSTREAM);
branchCmd.setStartPoint("origin/master");
branchCmd.call();

运行此代码后,我得到一个新的本地分支,其中包含以下内容:

enter image description here

但这不是我想要的。其上游应设置为refs/heads/newFeatureBranch

enter image description here

如何在新分支中设置上游?

0 个答案:

没有答案