在使用 go-github 库时,您可能会遇到一个名为 "Tree SHA is not a tree object" 的错误。这个错误的产生是因为您提供的 SHA 值不是一个有效的树对象。通常,这个错误可能是由于文件或目录不存在、SHA 值错误或者其他一些问题导致的。为了解决这个问题,您可以检查您提供的 SHA 值是否正确,并确保相关的文件或目录存在。如果问题仍然存在,您可以查阅 go-github 库的文档或寻求帮助,以获得进一步的解决方案。php小编柚子希望这个简短的指南能对您有所帮助!
我正在尝试使用 go-github
在 github 中创建一个空提交。
以下代码:
func createheadbranchforpr(ctx context.context, basebranch, repo, owner string, client *github.client) (newbranch string, err error) { newbranch = createrandombranchname() basebranchref, _, err := client.git.getref(ctx, owner, repo, "heads/"+basebranch) if err != nil { return "", err } latestcommitsha := basebranchref.object.getsha() // create a new tree with no changes from the latest commit on the base branch newtree := &github.tree{ sha: &latestcommitsha, } currenttime := time.now() newcommit := &github.commit{ message: github.string("test commit"), tree: newtree, parents: []github.commit{ { sha: github.string(latestcommitsha), }, }, author: &github.commitauthor{ name: github.string(prcommitterauthorname), email: github.string(prcommitterauthoremail), date: ¤ttime, }, committer: &github.commitauthor{ name: github.string(prcommitterauthorname), email: github.string(prcommitterauthorname), date: ¤ttime, }, sha: &latestcommitsha, } newcommitresponse, _, err := client.git.createcommit(ctx, owner, repo, newcommit) if err != nil { return "", err } // create a new branch based on the new commit newbranchref := &github.reference{ ref: github.string("refs/heads/" + newbranch), object: &github.gitobject{sha: newcommitresponse.sha}, } _, _, err = client.git.createref(ctx, owner, repo, newbranchref) if err != nil { return "", err } return newbranch, nil }
失败
newcommitresponse, _, err := client.git.createcommit(ctx, owner, repo, newcommit)
与
422 Tree SHA is not a tree object []
我在任何地方都找不到有关此错误的任何相关信息。
有什么想法吗?
当你使用 git cli 时,git 本身会运行“有意义”的翻译——例如:用相关的树的 sha 替换提交。
使用这个较低级别的 api,您必须显式地进行此转换。
使用 go-github
,您可以通过一个额外的查询来完成此操作:
commit, _, err := client.Git.GetCommit(ctx, owner, repo, latestCommitSHA) if err != nil { return "", err } treeSHA := commit.GetTree().GetSHA()
以上是go-github 库中的 Tree SHA is not a tree object 错误的详细内容。更多信息请关注PHP中文网其他相关文章!