On Wed, Oct 21, 2020 at 8:51 AM Charvi Mendiratta <charvi077@xxxxxxxxx> wrote: > According to Documentation/CodingGuidelines, redirect > operator is written with space before, but no space > after them. > > Let's remove these whitespaces after redirect operators. > > Signed-off-by: Charvi Mendiratta <charvi077@xxxxxxxxx> > --- > diff --git a/t/t7102-reset.sh b/t/t7102-reset.sh > @@ -460,14 +460,14 @@ test_expect_success 'resetting an unmodified path is a no-op' ' > -cat > expect << EOF > +cat >expect << EOF There's still a space after the '<<' operator which should be removed: cat >expect <<EOF