diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-06 10:49:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-06 10:49:57 -0700 |
commit | 76f4f74a444cdb3d43950c099da60e5d1ad36305 (patch) | |
tree | ef35069c72b7a8a3ba57e9d2ad93ae66a161b440 /t | |
parent | Merge branch 'mg/diff-uiconfig-doc' (diff) | |
parent | handle_alias: provide GIT_PREFIX to !alias (diff) | |
download | tgif-76f4f74a444cdb3d43950c099da60e5d1ad36305.tar.xz |
Merge branch 'mg/alias-expose-prefix'
* mg/alias-expose-prefix:
handle_alias: provide GIT_PREFIX to !alias
t1020: test !alias in subdirectory
Diffstat (limited to 't')
-rwxr-xr-x | t/t1020-subdirectory.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/t/t1020-subdirectory.sh b/t/t1020-subdirectory.sh index 1fd187c5eb..ddc3921ac6 100755 --- a/t/t1020-subdirectory.sh +++ b/t/t1020-subdirectory.sh @@ -118,6 +118,27 @@ test_expect_success 'alias expansion' ' git ss ) ' + +test_expect_success '!alias expansion' ' + pwd >expect && + ( + git config alias.test !pwd && + cd dir && + git test >../actual + ) && + 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 && ( |