On Mon, Apr 6, 2015 at 7:48 AM, Erik Elfström <erik.elfstrom@xxxxxxxxx> wrote: > Signed-off-by: Erik Elfström <erik.elfstrom@xxxxxxxxx> > --- > diff --git a/t/t7300-clean.sh b/t/t7300-clean.sh > index 99be5d9..cfdf6d4 100755 > --- a/t/t7300-clean.sh > +++ b/t/t7300-clean.sh > @@ -455,6 +455,88 @@ test_expect_success 'nested git work tree' ' > +test_expect_success 'giving path in nested git work tree will remove it' ' > + rm -fr foo && > + mkdir foo && > + ( > + cd foo && > + git init && > + mkdir -p bar/baz && > + cd bar/baz && > + >hello.world In my earlier review, I utterly forgot to mention the broken &&-chain here and throughout the patch. > + git add . && > + git commit -a -m nested > + ) && > + git clean -f -d foo/bar/baz && > + test -f foo/.git/HEAD && > + test -d foo/bar/ && > + ! test -d foo/bar/baz > +' -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html