我想从 GitHub 的公共和私有存储库下载代码。为此,我选择了 octokit.net,但我很难理解如何使用这个库来实现我的目标。通常它应该通过新的 GitHubClient 类来完成。但是当我尝试下载代码 octokit.net 时,我收到了路径错误的错误消息。
var github = new GitHubClient(new ProductHeaderValue("OctokitTests"), new Uri("https://github.com/octokit/octokit.net.git);
var repository = await github.Repository.Get("onwer", "user");