1

我无法获取给定提交哈希的文件内容。无论我有 ref 的哈希值,我都从默认分支获取当前文件版本。

我唯一的猜测是 ref 不能是普通哈希,但文档将“ref”描述为“提交/分支/标签的名称”。并且没有提供有关格式的进一步说明。

我在这里用一个 runkit 复制了这个问题。并在下面提供了我实际项目中的代码。

async getDifference(): Promise<void> {
    let oldFile = await this.gitHubApi.getContent(this.repo.owner.login, this.repo.name, `./${this.file}`, this.oldHash);
    let newFile = await this.gitHubApi.getContent(this.repo.owner.login, this.repo.name, `./${this.file}`, this.newHash);
    if(oldFile.data.content === newFile.data.content) {
        console.log('no differencce');
    } else {
       ...
    }
    return;
}


public getContent(owner: string, repo: string, path: string, ref?: string): Promise<any> {
    if(ref) {
        return this.octokit.repos.getContent({
            owner: owner,
            repo: repo,
            path: path,
            ref: ref
        });
    } else {
        return this.octokit.repos.getContent({
            owner: owner,
            repo: repo,
            path: path
        });
    }
}
4

1 回答 1

0

看起来这是 octokit/rest 中的错误,或者至少是意外行为,但可以说你给了它错误的输入。从你的例子

path: './test.txt/'

Octokit 不喜欢前导./,但如果您提供尾部斜杠,它会容忍它。但是,尾部斜杠导致它忽略refarg,即path: 'test.txt/'失败并出现与您看到的相同的错误。(并且可以说是错误的:斜杠意味着一个文件夹,而这只是一个文件 - 为什么要添加斜杠?)你真的想要

path: 'test.txt'

可能值得提出一个反对 octokit/rest 的问题,但是如果你从路径中去除前导./和尾随/s,它应该可以正常工作。

顺便说一句,从你的评论

请注意,对象“sha”是相同的,并且都不匹配提供的“ref”哈希。

这是意料之中的:提供的 ref 用于提交,它是提交元数据和根树的哈希,它是根文件夹索引的哈希,这就是包含对象 SHA 哈希的内容。

于 2018-07-09T23:14:09.287 回答