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
Copy file name to clipboardExpand all lines: LibGit2Sharp/ObjectDatabase.cs
-24Lines changed: 0 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -245,30 +245,6 @@ public virtual Tree CreateTree(TreeDefinition treeDefinition)
245
245
returntreeDefinition.Build(repo);
246
246
}
247
247
248
-
/// <summary>
249
-
/// Inserts a <see cref="Commit"/> into the object database, referencing an existing <see cref="Tree"/>.
250
-
/// <para>
251
-
/// Prettifing the message includes:
252
-
/// * Removing empty lines from the beginning and end.
253
-
/// * Removing trailing spaces from every line.
254
-
/// * Turning multiple consecutive empty lines between paragraphs into just one empty line.
255
-
/// * Ensuring the commit message ends with a newline.
256
-
/// * Removing every line starting with "#".
257
-
/// </para>
258
-
/// </summary>
259
-
/// <param name="author">The <see cref="Signature"/> of who made the change.</param>
260
-
/// <param name="committer">The <see cref="Signature"/> of who added the change to the repository.</param>
261
-
/// <param name="message">The description of why a change was made to the repository.</param>
262
-
/// <param name="prettifyMessage">True to prettify the message, or false to leave it as is</param>
263
-
/// <param name="tree">The <see cref="Tree"/> of the <see cref="Commit"/> to be created.</param>
264
-
/// <param name="parents">The parents of the <see cref="Commit"/> to be created.</param>
265
-
/// <returns>The created <see cref="Commit"/>.</returns>
266
-
[Obsolete("This will be removed in future relases. Use the overload CreateCommit(Signature, Signature, string, Tree, IEnumerable<Commit>, bool, char).")]
0 commit comments