Git2go: Simulate git validation and hit git immediately

How can I achieve the next use 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

Now I have the following: it creates a branch and points to the correct branch, but I cannot force it to update the working directory in the same way as git checkoutit 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 checkout options right now .

I'm still working on a button click.

+4
source share
1 answer

Finally, I started to work. Here is the code if someone wonders about the same:

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 click

// 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

, git2go , : http://blog.gopheracademy.com/advent-2014/git2go-tutorial/ ( )

.

+3

Source: https://habr.com/ru/post/1598541/


All Articles