Re: [PATCH 1/3] [Outreachy] t3903-stash: test without configured user name
From: Junio C Hamano <hidden>
Date: 2018-10-24 02:48:13
Slavica [off-list ref] 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)?
+ 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