On Thu, Oct 15, 2020 at 4:46 PM Elijah Newren via GitGitGadget
[off-list ref] wrote:
Add a new testcase modelled on a real world repository example that
served multiple purposes:
A couple minor style nits I noticed while quickly running my eye over
the patch...
+ for i in `test_seq 1 88`; do
+ echo content $i >dir/unchanged/file_$i
+ done &&
'do' on its own line, and prefer $(...) over `...`:
for i in $(test_seq 1 88)
do
echo content $i >dir/unchanged/file_$i
done &&
(Not necessarily worth a re-roll, though.)