On Thu, Feb 08, 2018 at 02:23:33PM -0500, Ben Peart wrote:
[]
> -
> +test_expect_success CASE_INSENSITIVE_FS 'add directory (with different
> case)' '
> + git reset --hard initial &&
> + mkdir -p dir1/dir2 &&
> + echo > dir1/dir2/a &&
> + echo > dir1/dir2/b &&
Thanks for working on this-
One and a half style nits:
The ">" should be close to the file name:
echo >dir1/dir2/a &&
But then we don't even look into the file, so that the "\" produced by echo is
not needed.
A simple
>dir1/dir2/a &&
is all that is needed.