如何使用octokit.net修改Github上的现有文件?

时间:2017-09-25 08:01:23

标签: c# github octokit.net

这是我目前使用的代码。它删除文件的内容并将其替换为新内容。

var readfile = client.Repository.Content.GetAllContentsByRef(owner, repo, targetFile, branch).Result;
var updatefile =client.Repository.Content.UpdateFile(owner,repo,targetFile,
new UpdateFileRequest("API File update", "Added this new line new ", readfile.First().Sha, branch));

我希望将内容添加到文件中。不要替换它。我的代码有问题吗?

0 个答案:

没有答案