projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c57a349
)
Fix t5516 to create test repo without hooks
author
Alex Riesen
<raa.lkml@gmail.com>
Wed, 4 Jul 2007 12:06:04 +0000
(14:06 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 4 Jul 2007 19:41:42 +0000
(12:41 -0700)
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>
t/t5516-fetch-push.sh
patch
|
blob
|
history
diff --git
a/t/t5516-fetch-push.sh
b/t/t5516-fetch-push.sh
index c0fa2ba404a7772af07d8546a51b05bd9b17ec2c..ca46aafe72fbf74d0569e68a0e7920655d98f9f5 100755
(executable)
--- 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
)
}