1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-28 06:56:10 +02:00

Fix t5516 to create test repo without hooks

Otherwise the hooks will be executed on cygwin and the test will fail
because of the contributed hooks.

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Alex Riesen 2007-07-04 14:06:04 +02:00 committed by Junio C Hamano
parent c57a3494c1
commit 586e4ce248

View File

@ -11,7 +11,8 @@ mk_empty () {
mkdir testrepo &&
(
cd testrepo &&
git init
git init &&
mv .git/hooks .git/hooks-disabled
)
}