Re: [PATCH v4 2/3] range-diff/format-patch: handle commit ranges other than A..B
From: Junio C Hamano <hidden>
Date: 2021-02-04 19:00:49
"Johannes Schindelin via GitGitGadget" [off-list ref] writes:
+test_expect_success 'A^! and A^-<n> (unmodified)' ' + git range-diff --no-color topic^! unmodified^-1 >actual && + cat >expect <<-EOF && + 1: $(test_oid t4) = 1: $(test_oid u4) s/12/B/ + EOF + test_cmp expect actual +'
Now we actually parse the single-token range, instead of relying on
"does it have dot-dot" heuristics, we can make sure that we reject
"HEAD^{/^string with .. in it}"
as "not a range with negative and positive ends".