Skip to content

find_refs_by_id: Use 'refname' as the default sort order

John Cai requested to merge jc-reverse-sort-order into master

The default sort order was '-refname' (reverse lexicographic based on the refname) for FindRefsByOID. The general use case is to use the alphabetical 'refname' (lexicographic based on the refname) sort order, so this MR changes that.

The git for-each-ref command that performs the search doesn't need to be passed 'refname' explicitly, contrary to '-refname', as 'refname' is the default for git for-each-ref. So the code can be simplified a bit.

Edited by John Cai

Merge request reports