From: Junio C Hamano Date: Fri, 21 Jun 2013 17:52:06 +0000 (-0700) Subject: t6003: add --date-order test X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=b9f80fdaea3a35fa156807e42e52d875bf6ad301;p=git.git t6003: add --date-order test The "--date-order" output is a slight twist of "--topo-order" in that commits from parallel histories are shown in their committer date order without an attempt to clump commits from a single line of history together like --topo-order does. Signed-off-by: Junio C Hamano --- diff --git a/t/t6003-rev-list-topo-order.sh b/t/t6003-rev-list-topo-order.sh index bb66b8b48e..0e3b7e1ea3 100755 --- a/t/t6003-rev-list-topo-order.sh +++ b/t/t6003-rev-list-topo-order.sh @@ -100,6 +100,28 @@ l0 root EOF +test_output_expect_success 'simple date order' 'git rev-list --date-order HEAD' <