使用Go应用程序将生成的文件推送到github

时间:2019-04-26 15:48:03

标签: go github

我正在使用生成文件的应用程序,我想将这些文件推送到github存储库中。可以在应用程序内完成吗?

1 个答案:

答案 0 :(得分:2)

尝试使用软件包go-git。它允许您执行git clone / commit / push操作。它也可以在内存中克隆树,而无需访问磁盘。

commit example中是一个示例添加/提交:

_, err = w.Add("example-git-file")
CheckIfError(err)

commit, err := w.Commit("example go-git commit", &git.CommitOptions{
        Author: &object.Signature{
            Name:  "John Doe",
            Email: "john@doe.org",
            When:  time.Now(),
        },
})