2 # LINT: loop handles failure explicitly with "|| return 1"
5 echo "This is file: $n" > r1/file.$n &&
6 git -C r1 add file.$n &&
7 git -C r1 commit -m "$n" || return 1
11 # LINT: loop fails to handle failure explicitly with "|| return 1"
14 printf "%"$n"s" X > r2/large.$n &&
15 git -C r2 add large.$n &&
16 git -C r2 commit -m "$n"