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.c | |
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.c')
-rw-r--r-- | commit.c | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -571,7 +571,7 @@ int count_parents(struct commit * commit) /* * Performs an in-place topological sort on the list supplied. */ -void sort_in_topological_order(struct commit_list ** list) +void sort_in_topological_order(struct commit_list ** list, int lifo) { struct commit_list * next = *list; struct commit_list * work = NULL, **insert; @@ -630,7 +630,10 @@ void sort_in_topological_order(struct commit_list ** list) } next=next->next; } + /* process the list in topological order */ + if (!lifo) + sort_by_date(&work); while (work) { struct commit * work_item = pop_commit(&work); struct sort_node * work_node = (struct sort_node *)work_item->object.util; @@ -647,8 +650,12 @@ void sort_in_topological_order(struct commit_list ** list) * guaranteeing topological order. */ pn->indegree--; - if (!pn->indegree) - commit_list_insert(parent, &work); + if (!pn->indegree) { + if (!lifo) + insert_by_date(parent, &work); + else + commit_list_insert(parent, &work); + } } parents=parents->next; } |