Merge pull request #1048 from RobPethick/dev-IGitHubClientGitDatabaseToGit

Switch GitDatabase->Git on IGitHubProvider
This commit is contained in:
Phil Haack
2016-01-02 14:46:00 -08:00
25 changed files with 114 additions and 88 deletions
+12 -1
View File
@@ -1,4 +1,6 @@
namespace Octokit
using System;
namespace Octokit
{
/// <summary>
/// A Client for the GitHub API v3. You can read more about the api here: http://developer.github.com.
@@ -125,8 +127,17 @@
/// <remarks>
/// Refer to the API docmentation for more information: https://developer.github.com/v3/git/
/// </remarks>
[Obsolete("Use Git instead")]
IGitDatabaseClient GitDatabase { get; }
/// <summary>
/// Access GitHub's Git Data API.
/// </summary>
/// <remarks>
/// Refer to the API docmentation for more information: https://developer.github.com/v3/git/
/// </remarks>
IGitDatabaseClient Git { get; }
/// <summary>
/// Access GitHub's Search API.
/// </summary>