du7133 2015-07-18 22:28
浏览 84
已采纳

Git2go:模拟git checkout和立即git push

How can I achieve the following using git2go.

$ git checkout -b feature_branch_name
... edit files, add and commit ...
$ git push -u origin feature_branch_name

I'm stuck here:

branch, err = repo.CreateBranch("test", headCommit, false, 
    signature, "Test branch that I was to push immediately")
if err != nil {
    panic(err)
}

UPDATE

I have the following now, it creates the branch and point to the correct branch, but I can't get it to update the working directory just like git checkout does:

head, err := repository.Head()
if err != nil {
    return err
}

headCommit, err := repository.LookupCommit(head.Target())
if err != nil {
    return err
}

_, err = cs.repository.CreateBranch(name, headCommit, false)
if err != nil {
    return err
}

_, err = cs.repository.References.CreateSymbolic("HEAD","refs/heads/"+name, true, "headOne")
if err != nil {
    return err
}

opts := &git.CheckoutOpts{
    Strategy: git.CheckoutSafe | git.CheckoutRecreateMissing,
}
if err := repository.CheckoutHead(opts); err != nil {
    return err
}

I think I'm struggling with the checkout options now.

I'm still working on the push part.

  • 写回答

1条回答 默认 最新

  • douchang8219 2015-07-30 11:22
    关注

    I finally got it working. Here is the code if anyone is wondering about the same thing:

    git checkout

    head, err := repository.Head()
    if err != nil {
        return err
    }
    
    headCommit, err := repository.LookupCommit(head.Target())
    if err != nil {
        return err
    }
    
    _, err = cs.repository.CreateBranch(name, headCommit, false)
    if err != nil {
        return err
    }
    
    _, err = cs.repository.References.CreateSymbolic("HEAD","refs/heads/"+name, true, "headOne")
    if err != nil {
        return err
    }
    
    opts := &git.CheckoutOpts{
        Strategy: git.CheckoutSafe | git.CheckoutRecreateMissing,
    }
    if err := repository.CheckoutHead(opts); err != nil {
        return err
    }
    

    git push

    // Get remote
    remote, err := repo.Remotes.Lookup("origin")
    if err != nil {
        remote, err = repo.Remotes.Create("origin", repo.Path())
        if err != nil {
            return err
        }
    }
    
    // Get the branch
    branch, err := repo.Branch()
    if err != nil {
        return err
    }
    
    // Get the name
    branchName, err := branch.Name()
    if err != nil {
        return err
    }
    
    if err := remote.Push([]string{"refs/heads/"+branchName}, &git.PushOptions{}); err != nil {
        return err
    }
    
    return nil
    

    Depending on what version of git2go you are using, this might also be helpful: http://blog.gopheracademy.com/advent-2014/git2go-tutorial/ (great article)

    Things have changed quite a bit since then though.

    Thank you

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 关于#python#的问题:自动化测试