aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-28 18:17:31 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-28 18:17:31 -0500
commitad6d22f237294422bb1d76231f60f069fed8b32e (patch)
treeccba6b448d68d46327847e2ef5c966b26173eca0
parent161947160b60ae6d6e578d712546f7c73d8bdf1c (diff)
downloadikiwiki-ad6d22f237294422bb1d76231f60f069fed8b32e.tar
ikiwiki-ad6d22f237294422bb1d76231f60f069fed8b32e.tar.gz
followup
-rw-r--r--doc/bugs/git_mail_notification_race.mdwn9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/bugs/git_mail_notification_race.mdwn b/doc/bugs/git_mail_notification_race.mdwn
index eddc0181e..3538b0764 100644
--- a/doc/bugs/git_mail_notification_race.mdwn
+++ b/doc/bugs/git_mail_notification_race.mdwn
@@ -44,3 +44,12 @@ edits. At least one of the two commits has to be a non-web commit.
A related problem is that if two commits are made separately but then
pushed in together, the commit code only looks at the HEAD commit, which
is the second one. No notification is sent for the first.
+
+----
+
+Based on all of these problems with using the post-update hook, ikiwiki
+should be changed to use the post-receive hook, which provides enough
+information to avoid the assumuptions that led to these problems.
+Transitioning existing wikis to using a new hook will be interesting. Also,
+this hook is only present in git >= 1.5.0.7.
+--[[Joey]]