git-rev-list: make sure the output is sorted by recency
authorLinus Torvalds <torvalds@g5.osdl.org>
Mon, 4 Jul 2005 23:49:37 +0000 (16:49 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Mon, 4 Jul 2005 23:49:37 +0000 (16:49 -0700)
We didn't sort the refs by date, so if you had multiple refs, the end
result would not be properly sorted.

rev-list.c

index 17995c3..8250063 100644 (file)
@@ -482,7 +482,7 @@ int main(int argc, char **argv)
                commit = get_commit_reference(arg, flags);
                if (!commit)
                        continue;
-               commit_list_insert(commit, &list);
+               insert_by_date(&list, commit);
        }
 
        if (!merge_order) {