On Fri, Sep 14, 2018 at 5:03 PM Matthew DeVore <[email protected]> wrote:
>
> This fixes various places where the ordering was obviously wrong and it
> was either related to other patches in this patchset or was easy
> find with grep.
>
> Signed-off-by: Matthew DeVore <[email protected]>
> ---
The clause about "related to other patches in this patchset is wrong,
so I've reworded the commit message body:
Fix various places where the ordering was obviously wrong, meaning it
was easy to find with grep.
> --- a/t/t7508-status.sh
> +++ b/t/t7508-status.sh
> @@ -1620,7 +1620,7 @@ test_expect_success 'show stash info with
> "--show-stash"' '
>
> test_expect_success 'no stash info with "--show-stash --no-show-stash"' '
> git status --show-stash --no-show-stash >expected_without_stash &&
> - test_cmp expected_default expected_without_stash
> + test_cmp expected_without_stash expected_default
> '
This line should not have been changed, so I've reverted it.