diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2007-07-04 14:06:04 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-04 12:41:42 -0700 |
commit | 586e4ce2487932b2ae770aad17d343b9021080e0 (patch) | |
tree | 12fe5bbfb8fbc8d4587116fce0345fd8a4d528fe /t/t5516-fetch-push.sh | |
parent | c57a3494c135ffb7ab5d070afecfcc42a3922edc (diff) | |
download | git-586e4ce2487932b2ae770aad17d343b9021080e0.tar.gz |
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>
Diffstat (limited to 't/t5516-fetch-push.sh')
-rwxr-xr-x | t/t5516-fetch-push.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh index c0fa2ba404..ca46aafe72 100755 --- a/t/t5516-fetch-push.sh +++ b/t/t5516-fetch-push.sh @@ -11,7 +11,8 @@ mk_empty () { mkdir testrepo && ( cd testrepo && - git init + git init && + mv .git/hooks .git/hooks-disabled ) } |