我正在尝试开发一个可以使用octokit在github存储库中创建,更新和删除文件的Windows表单应用程序。
public Form1()
{
InitializeComponent();
var ghClient = new GitHubClient(new ProductHeaderValue("Octokit-Test"));
ghClient.Credentials = new Credentials("-personal access token here-");
// github variables
var owner = "username";
var repo = "repository name";
var branch = "master";
// create file
//var createChangeSet = ghClient.Repository.Content.CreateFile(owner,repo,"path/file2.txt",new CreateFileRequest("File creation", "Hello World!", branch));
// update file
var updateChangeSet = ghClient.Repository.Content.UpdateFile(owner, repo,"path/file2.txt", new UpdateFileRequest("File update","Hello Universe!", "SHA value should be here", branch));
}
首先,我设法创建了一个文件(检查已注释的代码),该文件功能齐全。然后我尝试使用
更新该文件var updateChangeSet = ghClient.Repository.Content.UpdateFile(owner, repo,"path/file2.txt", new UpdateFileRequest("File update","Hello Universe!", "SHA value should be here", branch));
您可以看到,在这种情况下,我必须获得SHA值,因为" updatefilerequest"的要求是,
UpdateFileRequest(string message, string content, string sha, string branch)
如何从github接收我的文件的sha值?
我正在遵循本教程,但是当我尝试" createchangeset.content.sha"(没有评论createchangeset)时,它会在" content"下绘制一条红线,然后说,
Task<RepositoryChangeSet> does not contain a definition for 'Content' and no extention method 'Content' accepting a first argument of type Task<RepositoryChangeSet> could be found
我查看了GitHub文档,它说我应该使用
GET /repos/:owner/:repo/contents/:path
在存储库中返回文件或目录的内容,因此我认为我将能够以这种方式获得SHA值。
如何实现此方法以在存储库中接收文件的SHA值,以便我可以使用该值来更新文件?
我有相同的问题,要获得SHA,您需要先获取现有文件,并且使用此文件,您还可以获得最后一个提交SHA,可以用来更新文件。
完整的演示代码:
var ghClient = new GitHubClient(new ProductHeaderValue("Octokit-Test"));
ghClient.Credentials = new Credentials("//...//");
// github variables
var owner = "owner";
var repo = "repo";
var branch = "branch";
var targetFile = "_data/test.txt";
try
{
// try to get the file (and with the file the last commit sha)
var existingFile = await ghClient.Repository.Content.GetAllContentsByRef(owner, repo, targetFile, branch);
// update the file
var updateChangeSet = await ghClient.Repository.Content.UpdateFile(owner, repo, targetFile,
new UpdateFileRequest("API File update", "Hello Universe! " + DateTime.UtcNow, existingFile.First().Sha, branch));
}
catch (Octokit.NotFoundException)
{
// if file is not found, create it
var createChangeSet = await ghClient.Repository.Content.CreateFile(owner,repo, targetFile, new CreateFileRequest("API File creation", "Hello Universe! " + DateTime.UtcNow, branch));
}
我不确定是否有更好的方法 - 如果找不到搜索的文件,就会抛出异常。
,但似乎是这样起作用的。