Add a test for alias expansion in a subdirectory of the worktree. Signed-off-by: Michael J Gruber <git@xxxxxxxxxxxxxxxxxxxx> --- 65f3a9e (Remove all logic from get_git_work_tree(), 2010-11-01) breaks this test, which is why I am adding it. In fact, we don't really have tests for alias expansion at all, but that's a different issue. t/t1020-subdirectory.sh | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/t/t1020-subdirectory.sh b/t/t1020-subdirectory.sh index a3ac338..1fd187c 100755 --- a/t/t1020-subdirectory.sh +++ b/t/t1020-subdirectory.sh @@ -110,6 +110,14 @@ test_expect_success 'read-tree' ' ) ' +test_expect_success 'alias expansion' ' + ( + git config alias.ss status && + cd dir && + git status && + git ss + ) +' test_expect_success 'no file/rev ambiguity check inside .git' ' git commit -a -m 1 && ( -- 1.7.3.2.193.g78bbb -- 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