Pierre Habouzit <madcoder@xxxxxxxxxx> writes: > On Sun, Nov 04, 2007 at 11:35:42PM +0000, Junio C Hamano wrote: >> Shawn Bohrer <shawn.bohrer@xxxxxxxxx> writes: >> >> > +test_expect_success 'git-clean with prefix' ' >> > + >> > + mkdir -p build docs && >> > + touch a.out src/part3.c docs/manual.txt obj.o build/lib.so && >> > + cd src/ && >> > + git-clean && >> > + cd - && >> >> This is wrong for two reasons. >> >> - Is "cd -" portable? > > this is POSIX: That actually doesn't matter. What the real world shells do matters more. In addition, "cd -" is a nice shorthand for interactive use but it is a bad discipline to use it in a script anyway. ... ( cd src && git-clean ) && ... would be the best way to write this. - 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