@@ -110,6 +110,7 @@ public interface IGitClient
110
110
/// </returns>
111
111
Task < ContentChanges > CompareWith ( IRepository repository , string sha1 , string sha2 , string path , byte [ ] contents ) ;
112
112
113
+ /// <summary>
113
114
/// Gets the value of a configuration key.
114
115
/// </summary>
115
116
/// <param name="repository">The repository.</param>
@@ -189,7 +190,7 @@ public interface IGitClient
189
190
/// <summary>
190
191
/// Find the merge base SHA between two commits.
191
192
/// </summary>
192
- /// <param name="repository ">The repository.</param>
193
+ /// <param name="repo ">The repository.</param>
193
194
/// <param name="targetCloneUrl">The clone url of the PR target repo.</param>
194
195
/// <param name="baseSha">The PR base SHA.</param>
195
196
/// <param name="headSha">The PR head SHA.</param>
@@ -201,9 +202,10 @@ public interface IGitClient
201
202
/// <exception cref="LibGit2Sharp.NotFoundException">Thrown when the merge base can't be found.</exception>
202
203
Task < string > GetPullRequestMergeBase ( IRepository repo , UriString targetCloneUrl , string baseSha , string headSha , string baseRef , int pullNumber ) ;
203
204
205
+ /// <summary>
204
206
/// Checks whether the current head is pushed to its remote tracking branch.
205
207
/// </summary>
206
- /// <param name="repository ">The repository.</param>
208
+ /// <param name="repo ">The repository.</param>
207
209
/// <returns></returns>
208
210
Task < bool > IsHeadPushed ( IRepository repo ) ;
209
211
@@ -212,7 +214,7 @@ public interface IGitClient
212
214
/// <paramref name="baseBranch"/> and <paramref name="compareBranch"/> and returns their
213
215
/// commit messages.
214
216
/// </summary>
215
- /// <param name="repository ">The repository.</param>
217
+ /// <param name="repo ">The repository.</param>
216
218
/// <param name="baseBranch">The base branch to find a merge base with.</param>
217
219
/// <param name="compareBranch">The compare branch to find a merge base with.</param>
218
220
/// <param name="maxCommits">The maximum number of commits to return.</param>
0 commit comments