summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7be401e)
raw | patch | inline | side by side (parent: 7be401e)
author | Alex Riesen <raa.lkml@gmail.com> | |
Tue, 17 Mar 2009 16:22:53 +0000 (17:22 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 17 Mar 2009 20:36:24 +0000 (13:36 -0700) |
It is broken because of the tricks we have to play with
lstat to get the bearable perfomance out of the call.
Sadly, it disables access to Cygwin's executable attribute,
which Windows filesystems do not have at all.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
lstat to get the bearable perfomance out of the call.
Sadly, it disables access to Cygwin's executable attribute,
which Windows filesystems do not have at all.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5403-post-checkout-hook.sh | patch | blob | history |
index 4fdb418550ee0f3c93e80f8c3df41094c0ada00c..5858b868ed6ff05d458996cf8c359a7148591582 100755 (executable)
test $old = $new -a $flag = 0
'
+if test "$(git config --bool core.filemode)" = true; then
mkdir -p templates/hooks
cat >templates/hooks/post-checkout <<'EOF'
#!/bin/sh
git clone --template=templates . clone3 &&
test -f clone3/.git/post-checkout.args
'
+fi
test_done