这是我目前使用的代码。它删除文件的内容并将其替换为新内容。
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));
我希望将内容添加到文件中。不要替换它。我的代码有问题吗?