Hi Junio, On Wed, 24 Oct 2018, Junio C Hamano wrote: > Slavica <slavicadj.ip2018@xxxxxxxxx> writes: > > > +test_expect_failure 'stash with HOME as non-existing directory' ' > > + test_commit 1 && > > + test_config user.useconfigonly true && > > + test_config stash.usebuiltin true && > > + ( > > + HOME=$(pwd)/none && > > + export HOME && > > What is the reason why this test needs to move HOME away from > TRASH_DIRECTORY (set in t/test-lib.sh)? This is to make sure that no user.name nor user.email is configured. That was my idea, hence I answer your question. Ciao, Dscho > > > + unset GIT_AUTHOR_NAME && > > + unset GIT_AUTHOR_EMAIL && > > + unset GIT_COMMITTER_NAME && > > + unset GIT_COMMITTER_EMAIL && > > + test_must_fail git config user.email && > > + echo changed >1.t && > > + git stash > > + ) > > +' > > + > > test_done >