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
/// Stores the content of the <see cref = "Repository.Index" /> as a new <see cref = "Commit" /> into the repository.
129
+
/// The tip of the <see cref = "Repository.Head"/> will be used as the parent of this new Commit.
130
+
/// Once the commit is created, the <see cref = "Repository.Head"/> will move forward to point at it.
129
131
/// </summary>
130
132
/// <param name = "message">The description of why a change was made to the repository.</param>
131
133
/// <param name = "author">The <see cref = "Signature" /> of who made the change.</param>
132
134
/// <param name = "committer">The <see cref = "Signature" /> of who added the change to the repository.</param>
133
-
/// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
135
+
/// <param name = "amendPreviousCommit">True to amend the current <see cref = "Commit"/> pointed at by <see cref = "Repository.Head"/>, false otherwise.</param>
Copy file name to clipboardExpand all lines: LibGit2Sharp/IQueryableCommitCollection.cs
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,12 +10,14 @@ public interface IQueryableCommitCollection : ICommitCollection //TODO: Find a n
10
10
ICommitCollectionQueryBy(Filterfilter);
11
11
12
12
/// <summary>
13
-
/// Stores the content of the content as a new <see cref = "Commit" /> into the repository.
13
+
/// Stores the content of the <see cref = "Repository.Index" /> as a new <see cref = "Commit" /> into the repository.
14
+
/// The tip of the <see cref = "Repository.Head"/> will be used as the parent of this new Commit.
15
+
/// Once the commit is created, the <see cref = "Repository.Head"/> will move forward to point at it.
14
16
/// </summary>
15
17
/// <param name = "message">The description of why a change was made to the repository.</param>
16
18
/// <param name = "author">The <see cref = "Signature" /> of who made the change.</param>
17
19
/// <param name = "committer">The <see cref = "Signature" /> of who added the change to the repository.</param>
18
-
/// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
20
+
/// <param name = "amendPreviousCommit">True to amend the current <see cref = "Commit"/> pointed at by <see cref = "Repository.Head"/>, false otherwise.</param>
/// Stores the content of the <see cref = "Repository.Index" /> as a new <see cref = "LibGit2Sharp.Commit" /> into the repository.
116
+
/// The tip of the <see cref = "Repository.Head"/> will be used as the parent of this new Commit.
117
+
/// Once the commit is created, the <see cref = "Repository.Head"/> will move forward to point at it.
116
118
/// <para>Both the Author and Committer will be guessed from the Git configuration. An exception will be raised if no configuration is reachable.</para>
117
119
/// </summary>
118
120
/// <param name = "repository">The <see cref = "Repository" /> being worked with.</param>
119
121
/// <param name = "message">The description of why a change was made to the repository.</param>
120
-
/// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
122
+
/// <param name = "amendPreviousCommit">True to amend the current <see cref = "LibGit2Sharp.Commit"/> pointed at by <see cref = "Repository.Head"/>, false otherwise.</param>
/// Stores the content of the <see cref = "Repository.Index" /> as a new <see cref = "LibGit2Sharp.Commit" /> into the repository.
133
+
/// The tip of the <see cref = "Repository.Head"/> will be used as the parent of this new Commit.
134
+
/// Once the commit is created, the <see cref = "Repository.Head"/> will move forward to point at it.
131
135
/// <para>The Committer will be guessed from the Git configuration. An exception will be raised if no configuration is reachable.</para>
132
136
/// </summary>
133
137
/// <param name = "repository">The <see cref = "Repository" /> being worked with.</param>
134
138
/// <param name = "author">The <see cref = "Signature" /> of who made the change.</param>
135
139
/// <param name = "message">The description of why a change was made to the repository.</param>
136
-
/// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
140
+
/// <param name = "amendPreviousCommit">True to amend the current <see cref = "LibGit2Sharp.Commit"/> pointed at by <see cref = "Repository.Head"/>, false otherwise.</param>
/// Stores the content of the <see cref = "Repository.Index" /> as a new <see cref = "LibGit2Sharp.Commit" /> into the repository.
151
+
/// The tip of the <see cref = "Repository.Head"/> will be used as the parent of this new Commit.
152
+
/// Once the commit is created, the <see cref = "Repository.Head"/> will move forward to point at it.
147
153
/// </summary>
148
154
/// <param name = "repository">The <see cref = "Repository" /> being worked with.</param>
149
155
/// <param name = "author">The <see cref = "Signature" /> of who made the change.</param>
150
156
/// <param name = "committer">The <see cref = "Signature" /> of who added the change to the repository.</param>
151
157
/// <param name = "message">The description of why a change was made to the repository.</param>
152
-
/// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
158
+
/// <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