Octokit.net Creating new repository
问题 I have a problem with creating new repository with Octokit.net. This is my code: public async Task stvoriNovi(FormCollection collection) { string name = collection.Get("name"); NewRepository newRepo = new NewRepository(name); newRepo.AutoInit = true; var accessToken = Session["OAuthToken"] as string; if (accessToken != null) { client.Credentials = new Credentials(accessToken); } await client.Repository.Create(newRepo); } I've put breakpoints and there I see that everything is OK. http:/