diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2018-05-03 16:46:55 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-06 13:17:19 +0900 |
commit | 5459268751941a71b32816902698376b7932cec5 (patch) | |
tree | 1858d7a5da9b3ec8c53481410eddc9be59f8f3fb /t | |
parent | upload-pack: fix error message typo (diff) | |
download | tgif-5459268751941a71b32816902698376b7932cec5.tar.xz |
upload-pack: read config when serving protocol v2
The upload-pack code paths never call git_config() with
upload_pack_config() when protocol v2 is used, causing options like
uploadpack.packobjectshook to not take effect. Ensure that this function
is called.
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5702-protocol-v2.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t5702-protocol-v2.sh b/t/t5702-protocol-v2.sh index 56f7c3c326..abb15cd6de 100755 --- a/t/t5702-protocol-v2.sh +++ b/t/t5702-protocol-v2.sh @@ -201,6 +201,20 @@ test_expect_success 'ref advertisment is filtered during fetch using protocol v2 ! grep "refs/tags/three" log ' +test_expect_success 'upload-pack respects config using protocol v2' ' + git init server && + write_script server/.git/hook <<-\EOF && + touch hookout + "$@" + EOF + test_commit -C server one && + + test_config_global uploadpack.packobjectshook ./hook && + test_path_is_missing server/.git/hookout && + git -c protocol.version=2 clone "file://$(pwd)/server" client && + test_path_is_file server/.git/hookout +' + # Test protocol v2 with 'http://' transport # . "$TEST_DIRECTORY"/lib-httpd.sh |