mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
867ad08a26
Change the hardcoded lookup for .git/hooks/* to optionally lookup in $(git config core.hooksPath)/* instead. This is essentially a more intrusive version of the git-init ability to specify hooks on init time via init templates. The difference between that facility and this feature is that this can be set up after the fact via e.g. ~/.gitconfig or /etc/gitconfig to apply for all your personal repositories, or all repositories on the system. I plan on using this on a centralized Git server where users can create arbitrary repositories under /gitroot, but I'd like to manage all the hooks that should be run centrally via a unified dispatch mechanism. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
37 lines
967 B
Bash
Executable file
37 lines
967 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='Test the core.hooksPath configuration variable'
|
|
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success 'set up a pre-commit hook in core.hooksPath' '
|
|
mkdir -p .git/custom-hooks .git/hooks &&
|
|
write_script .git/custom-hooks/pre-commit <<-\EOF &&
|
|
echo CUSTOM >>actual
|
|
EOF
|
|
write_script .git/hooks/pre-commit <<-\EOF
|
|
echo NORMAL >>actual
|
|
EOF
|
|
'
|
|
|
|
test_expect_success 'Check that various forms of specifying core.hooksPath work' '
|
|
test_commit no_custom_hook &&
|
|
git config core.hooksPath .git/custom-hooks &&
|
|
test_commit have_custom_hook &&
|
|
git config core.hooksPath .git/custom-hooks/ &&
|
|
test_commit have_custom_hook_trailing_slash &&
|
|
git config core.hooksPath "$PWD/.git/custom-hooks" &&
|
|
test_commit have_custom_hook_abs_path &&
|
|
git config core.hooksPath "$PWD/.git/custom-hooks/" &&
|
|
test_commit have_custom_hook_abs_path_trailing_slash &&
|
|
cat >expect <<-\EOF &&
|
|
NORMAL
|
|
CUSTOM
|
|
CUSTOM
|
|
CUSTOM
|
|
CUSTOM
|
|
EOF
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_done
|