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: generate/libgit2-supplement.json
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -188,6 +188,40 @@
188
188
"type": "enum"
189
189
}
190
190
],
191
+
[
192
+
"git_sort_t",
193
+
{
194
+
"type": "enum",
195
+
"description": "Flags to specify the sorting which a revwalk should perform.",
196
+
"fields": [
197
+
{
198
+
"type": "int",
199
+
"name": "GIT_SORT_NONE",
200
+
"comments": "Sort the repository contents in no particular ordering; this sorting is arbitrary, implementation-specific and subject to change at any time. This is the default sorting for new walkers.",
201
+
"value": 0
202
+
},
203
+
{
204
+
"type": "int",
205
+
"name": "GIT_SORT_TOPOLOGICAL",
206
+
"comments": "Sort the repository contents in topological order (parents before children); this sorting mode can be combined with time sorting.",
207
+
"value": 1
208
+
},
209
+
{
210
+
"type": "int",
211
+
"name": "GIT_SORT_TIME",
212
+
"comments": "Sort the repository contents by commit time; this sorting mode can be combined with topological sorting.",
213
+
"value": 2
214
+
},
215
+
{
216
+
"type": "int",
217
+
"name": "GIT_SORT_REVERSE",
218
+
"comments": "Iterate through the repository contents in reverse order; this sorting mode can be combined with any of the above.",
0 commit comments