You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 3, 2023. It is now read-only.
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="Commit"/> into the repository.
171
+
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="LibGit2Sharp.Commit"/> into the repository.
172
172
/// The tip of the <see cref="Repository.Head"/> will be used as the parent of this new Commit.
173
173
/// Once the commit is created, the <see cref="Repository.Head"/> will move forward to point at it.
174
174
/// </summary>
175
175
/// <param name="message">The description of why a change was made to the repository.</param>
176
176
/// <param name="author">The <see cref="Signature"/> of who made the change.</param>
177
177
/// <param name="committer">The <see cref="Signature"/> of who added the change to the repository.</param>
178
-
/// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
/// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
@@ -945,15 +945,15 @@ public Commit Commit(string message, Signature author, Signature committer, Comm
945
945
}
946
946
947
947
/// <summary>
948
-
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="Commit"/> into the repository.
948
+
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="LibGit2Sharp.Commit"/> into the repository.
949
949
/// The tip of the <see cref="Repository.Head"/> will be used as the parent of this new Commit.
950
950
/// Once the commit is created, the <see cref="Repository.Head"/> will move forward to point at it.
951
951
/// </summary>
952
952
/// <param name="message">The description of why a change was made to the repository.</param>
953
953
/// <param name="author">The <see cref="Signature"/> of who made the change.</param>
954
954
/// <param name="committer">The <see cref="Signature"/> of who added the change to the repository.</param>
955
-
/// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
/// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
0 commit comments