# HG changeset patch # User Vadim Gelfer # Date 1139646712 28800 # Node ID eabfbd220f399e112cfce91e0aee38f6ac689971 # Parent 03ee100b8c21146da6e3c6b0e3518b6c6415d78a fix hgrc doc hook descriptions. diff -r 03ee100b8c21 -r eabfbd220f39 doc/hgrc.5.txt --- a/doc/hgrc.5.txt Fri Feb 10 16:45:56 2006 -0500 +++ b/doc/hgrc.5.txt Sat Feb 11 00:31:52 2006 -0800 @@ -141,17 +141,21 @@ [hooks] # do not use the site-wide hook - commit = - commit.email = /my/email/hook - commit.autobuild = /my/build/hook + incoming = + incoming.email = /my/email/hook + incoming.autobuild = /my/build/hook changegroup;; Run after a changegroup has been added via push or pull. Passed the ID of the first new changeset in $NODE. commit;; - Run after a changeset has been created or for each changeset - pulled. Passed the ID of the newly created changeset in - environment variable $NODE. + Run after a changeset has been created in the local repository. + Passed the ID of the newly created changeset in environment + variable $NODE. + incoming;; + Run after a changeset has been pulled, pushed, or unbundled into + the local repository. Passed the ID of the newly arrived + changeset in environment variable $NODE. precommit;; Run before starting a commit. Exit status 0 allows the commit to proceed. Non-zero status will cause the commit to fail.