SortMode
Description:
[ CCode ( cprefix = "GGIT_SORT_" , type_id = "ggit_sort_mode_get_type ()" ) ]
[ Flags ]
public enum SortMode
The type of sorting mode for the revision walker.
Content:
Enum values:
- NONE - Sorts the repository contents in no
particular ordering; this sorting is arbitrary, implementation-specific and subject to change at any time.
- REVERSE - Iterate through the repository
contents in reverse order; this sorting mode can be combined with any of the above.
- TIME - Sort the repository contents by commit
time; this sorting mode can be combined with topological sorting.
- TOPOLOGICAL - Sorts the repository
contents in topological order (parents before children); this sorting mode can be combined with time sorting.