diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-15 22:05:33 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-15 22:12:06 -0800 |
commit | 4c8725f16abff4be4812d0d07a663250bef3ef0e (patch) | |
tree | b71f712e939c935fa1cbb0d5f96c8d2ee4af6b73 /commit.h | |
parent | be97bd1b88003f4a19e2832ee0cc6ac20fcab674 (diff) | |
download | git-4c8725f16abff4be4812d0d07a663250bef3ef0e.tar.gz git-4c8725f16abff4be4812d0d07a663250bef3ef0e.tar.xz |
topo-order: make --date-order optional.
This adds --date-order to rev-list; it is similar to topo order
in the sense that no parent comes before all of its children,
but otherwise things are still ordered in the commit timestamp
order.
The same flag is also added to show-branch.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -72,6 +72,8 @@ int count_parents(struct commit * commit); * Post-conditions: * invariant of resulting list is: * a reachable from b => ord(b) < ord(a) + * in addition, when lifo == 0, commits on parallel tracks are + * sorted in the dates order. */ -void sort_in_topological_order(struct commit_list ** list); +void sort_in_topological_order(struct commit_list ** list, int lifo); #endif /* COMMIT_H */ |