From 7cf16a14f5c070f7b14cf28023769450133172ae Mon Sep 17 00:00:00 2001 From: Michael J Gruber Date: Wed, 27 Apr 2011 10:36:27 +0200 Subject: handle_alias: provide GIT_PREFIX to !alias Provide an environment variable GIT_PREFIX which contains the subdirectory from which a !alias was called (i.e. 'git rev-parse --show-prefix') since these cd to the to level directory before they are executed. Signed-off-by: Michael J Gruber Signed-off-by: Junio C Hamano --- t/t1020-subdirectory.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 't/t1020-subdirectory.sh') diff --git a/t/t1020-subdirectory.sh b/t/t1020-subdirectory.sh index 66e40d38a3..ddc3921ac6 100755 --- a/t/t1020-subdirectory.sh +++ b/t/t1020-subdirectory.sh @@ -129,6 +129,16 @@ test_expect_success '!alias expansion' ' test_cmp expect actual ' +test_expect_success 'GIT_PREFIX for !alias' ' + printf "dir/" >expect && + ( + git config alias.test "!sh -c \"printf \$GIT_PREFIX\"" && + cd dir && + git test >../actual + ) && + test_cmp expect actual +' + test_expect_success 'no file/rev ambiguity check inside .git' ' git commit -a -m 1 && ( -- cgit v1.2.3