Jeff King [off-list ref] writes:
On Fri, Sep 21, 2018 at 10:39:30AM -0700, Derrick Stolee via GitGitGadget wrote:
quoted
From: Derrick Stolee <redacted>
The rev-list command is critical to Git's functionality. Ensure it
works in the three commit-graph environments constructed in
t6600-test-reach.sh. Here are a few important types of rev-list
operations:
* Basic: git rev-list --topo-order HEAD
* Range: git rev-list --topo-order compare..HEAD
* Ancestry: git rev-list --topo-order --ancestry-path compare..HEAD
* Symmetric Difference: git rev-list --topo-order compare...HEAD
Makes sense. I'll assume you filled out all those "expect" blocks
correctly. ;)
Well, otherwise three-modes test would barf at least when it is
running in its "no graph" mode, so I'd assume we are covered.