Skip to content

Commit 041a4d3

Browse files
committed
Enhance Repository.Fetch() documentation
1 parent 81952ab commit 041a4d3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

LibGit2Sharp/RepositoryExtensions.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,13 @@ public static Commit Commit(this IRepository repository, string message, Signatu
149149
/// <summary>
150150
/// Fetch from the specified remote.
151151
/// </summary>
152-
/// <param name="repository"></param>
153-
/// <param name="remoteName"></param>
154-
/// <param name="progress"></param>
155-
/// <param name="tagFetchMode"></param>
156-
/// <param name="onProgress"></param>
157-
/// <param name="onCompletion"></param>
158-
/// <param name="onUpdateTips"></param>
152+
/// <param name="repository">The <see cref = "Repository" /> being worked with.</param>
153+
/// <param name="remoteName">The name of the <see cref="Remote"/> to fetch from.</param>
154+
/// <param name="progress">The <see cref = "FetchProgress" /> datastructure where the progress of the fetch is reported.</param>
155+
/// <param name="tagFetchMode">Optional parameter indicating what tags to download.</param>
156+
/// <param name="onProgress">Progress callback. Corresponds to libgit2 progress callback.</param>
157+
/// <param name="onCompletion">Completion callback. Corresponds to libgit2 completion callback.</param>
158+
/// <param name="onUpdateTips">UpdateTips callback. Corresponds to libgit2 update_tips callback.</param>
159159
public static void Fetch(this IRepository repository, string remoteName, FetchProgress progress = null,
160160
TagFetchMode tagFetchMode = TagFetchMode.Auto,
161161
ProgressHandler onProgress = null,

0 commit comments

Comments
 (0)