28

我正在使用 JGit 来检查远程跟踪分支。

Git binrepository = cloneCmd.call()

CheckoutCommand checkoutCmd = binrepository.checkout();
checkoutCmd.setName( "origin/" + branchName);
checkoutCmd.setUpstreamMode(CreateBranchCommand.SetupUpstreamMode.TRACK );
checkoutCmd.setStartPoint( "origin/" + branchName );

Ref ref = checkoutCmd.call();

文件已签出,但 HEAD 未指向分支。以下是git status输出,

$ git status
# Not currently on any branch.
nothing to commit (working directory clean)

可以在 git 命令行中轻松执行相同的操作,并且可以正常工作,

git checkout -t origin/mybranch

这个JGit怎么做?

4

4 回答 4

44

你必须使用setCreateBranch来创建一个分支:

Ref ref = git.checkout().
        setCreateBranch(true).
        setName("branchName").
        setUpstreamMode(CreateBranchCommand.SetupUpstreamMode.TRACK).
        setStartPoint("origin/" + branchName).
        call();

您的第一个命令相当于git checkout origin/mybranch.

(编辑:我向 JGit 提交了一个补丁来改进 CheckoutCommand 的文档:https ://git.eclipse.org/r/8259 )

于 2012-10-17T06:26:56.333 回答
5

无论出于何种原因,robinst 发布的代码对我不起作用。特别是,创建的本地分支没有跟踪远程分支。这就是我使用的对我有用的东西(使用 jgit 2.0.0.201206130900-r):

git.pull().setCredentialsProvider(user).call();
git.branchCreate().setForce(true).setName(branch).setStartPoint("origin/" + branch).call();
git.checkout().setName(branch).call();
于 2013-08-07T21:00:40.830 回答
4

如代码所示CheckoutCommand,您需要将布尔值设置为createBranch才能true创建本地分支。

您可以在CheckoutCommandTest-testCreateBranchOnCheckout()

@Test
public void testCreateBranchOnCheckout() throws Exception {
  git.checkout().setCreateBranch(true).setName("test2").call();
  assertNotNull(db.getRef("test2"));
}
于 2012-10-17T06:24:31.153 回答
1

你也可以这样

git.checkout().setName(remoteBranch).setForce(true).call();
                logger.info("Checkout to remote branch:" + remoteBranch);
                git.branchCreate() 
                   .setName(branchName)
                   .setUpstreamMode(SetupUpstreamMode.SET_UPSTREAM)
                   .setStartPoint(remoteBranch)
                   .setForce(true)
                   .call(); 
                logger.info("create new locale branch:" + branchName + "set_upstream with:" + remoteBranch);
                git.checkout().setName(branchName).setForce(true).call();
                logger.info("Checkout to locale branch:" + branchName);
于 2017-09-09T07:05:28.673 回答