我无法获取给定提交哈希的文件内容。无论我有 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
});
}
}