Eclipse-新的空分支创建

时间:2014-07-09 12:30:24

标签: eclipse git user-interface

如何使用GUI在Eclipse中创建新的EMPTY分支? 有没有办法做到这一点? 我知道,使用控制台可以使用名为" orphan"科。但我无法使用Eclipse GUI找到如何做到这一点。

1 个答案:

答案 0 :(得分:3)

今年早些时候,JGit只获得了checkout --orphan January 2014gerrit changecommit 2f425cf)。

它使用(org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CheckoutCommandTest.java#L375-L378

private CheckoutCommand newOrphanBranchCommand() {
  return git.checkout().setOrphan(true)
    .setName("orphanbranch");
}

但无处in eclipse/egit code您找到了setOrphan()来电。

这意味着该功能尚未集成到EGit中。