From a94d305bf8043a7a0579037c7e52e632613410f7 Mon Sep 17 00:00:00 2001 From: Steven Drake Date: Fri, 26 Feb 2010 17:00:21 +1300 Subject: t/t0001-init.sh: add test for 'init with init.templatedir set' Requires a small change to wrap-for-bin.sh in order to work. Signed-off-by: Steven Drake Signed-off-by: Junio C Hamano --- t/t0001-init.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 't') diff --git a/t/t0001-init.sh b/t/t0001-init.sh index 538650479..675773479 100755 --- a/t/t0001-init.sh +++ b/t/t0001-init.sh @@ -167,6 +167,25 @@ test_expect_success 'init with --template (blank)' ' ! test -f template-blank/.git/info/exclude ' +test_expect_success 'init with init.templatedir set' ' + mkdir templatedir-source && + echo Content >templatedir-source/file && + ( + HOME="`pwd`" && + export HOME && + test_config="${HOME}/.gitconfig" && + git config -f "$test_config" init.templatedir "${HOME}/templatedir-source" && + mkdir templatedir-set && + cd templatedir-set && + unset GIT_CONFIG_NOGLOBAL && + unset GIT_TEMPLATE_DIR && + NO_SET_GIT_TEMPLATE_DIR=t && + export NO_SET_GIT_TEMPLATE_DIR && + git init + ) && + test_cmp templatedir-source/file templatedir-set/.git/file +' + test_expect_success 'init --bare/--shared overrides system/global config' ' ( HOME="`pwd`" && -- cgit v1.2.1