dshm8998473 2017-07-27 06:11
浏览 156
已采纳

golang git拉回购

I'm very new to golang Im trying to do a git pull from go program. I have looked in to native libraries and found https://github.com/src-d/go-git/.

I has features to of cloning ect. but not pulling. Looking at the source it seems there is a function for pulling as well

func (r *Repository) Pull(o *PullOptions) 

However compiler warns that its undefined. Can anyone point me how can I do this or to an alternative library which supports both clone and pull ?

  • 写回答

1条回答 默认 最新

  • 普通网友 2017-07-27 06:18
    关注

    You should create a Repository struct by cloning a repo:

    import {
      git "github.com/src-d/go-git"
    }
    
    repo, err := git.Clone(memory.NewStorage(), nil, &git.CloneOptions{
        URL: "https://github.com/src-d/go-siva",
    })
    

    And then on the repo struct call Pull.

    err := repo.Pull(&git.PullOptions{
        RemoteName: "origin"
    })
    

    You cannot call git.Pull directly.

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

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!