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 /rev-parse.c | |
parent | Merge branch 'jc/add' (diff) | |
download | tgif-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 'rev-parse.c')
-rw-r--r-- | rev-parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rev-parse.c b/rev-parse.c index b82f294a78..9161faed1e 100644 --- a/rev-parse.c +++ b/rev-parse.c @@ -48,6 +48,7 @@ static int is_rev_argument(const char *arg) "--show-breaks", "--sparse", "--topo-order", + "--date-order", "--unpacked", NULL }; |