Samuel Lijin <sxlijin@xxxxxxxxx> writes: > Signed-off-by: Samuel Lijin <sxlijin@xxxxxxxxx> > --- This was fixed at "hide untracked" patch, so squash these changes in to that commit and add something like This fixes known breakages in t7061 documented earlier in the series. at the end of the log message of that one. The same for 7/8, which was fixed in "teach clean -d to skip dirs" patch. Thanks. > t/t7061-wtstatus-ignore.sh | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/t/t7061-wtstatus-ignore.sh b/t/t7061-wtstatus-ignore.sh > index 15e7592b6..fc6013ba3 100755 > --- a/t/t7061-wtstatus-ignore.sh > +++ b/t/t7061-wtstatus-ignore.sh > @@ -12,7 +12,7 @@ cat >expected <<\EOF > !! untracked/ignored > EOF > > -test_expect_failure 'status untracked directory with --ignored' ' > +test_expect_success 'status untracked directory with --ignored' ' > echo "ignored" >.gitignore && > mkdir untracked && > : >untracked/ignored && > @@ -21,7 +21,7 @@ test_expect_failure 'status untracked directory with --ignored' ' > test_cmp expected actual > ' > > -test_expect_failure 'same with gitignore starting with BOM' ' > +test_expect_success 'same with gitignore starting with BOM' ' > printf "\357\273\277ignored\n" >.gitignore && > mkdir -p untracked && > : >untracked/ignored &&