This commit is contained in:
aedampir@gmail.com
2016-07-17 16:29:32 +07:00
parent b47b05489e
commit 44b0f4039d
167 changed files with 999 additions and 999 deletions

View File

@@ -28,7 +28,7 @@ namespace Octokit.Reactive
/// <remarks>
/// http://developer.github.com/v3/git/trees/#get-a-tree
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable<TreeResponse> Get(int repositoryId, string reference);
@@ -50,7 +50,7 @@ namespace Octokit.Reactive
/// <remarks>
/// https://developer.github.com/v3/git/trees/#get-a-tree-recursively
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
IObservable<TreeResponse> GetRecursive(int repositoryId, string reference);
@@ -71,7 +71,7 @@ namespace Octokit.Reactive
/// <remarks>
/// http://developer.github.com/v3/git/trees/#create-a-tree
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="newTree">The value of the new tree</param>
IObservable<TreeResponse> Create(int repositoryId, NewTree newTree);
}