fix hgrc doc hook descriptions.

This commit is contained in:
Vadim Gelfer 2006-02-11 00:31:52 -08:00
parent 4cdd5950a7
commit 977a337f0c

View File

@ -141,17 +141,21 @@ hooks::
[hooks] [hooks]
# do not use the site-wide hook # do not use the site-wide hook
commit = incoming =
commit.email = /my/email/hook incoming.email = /my/email/hook
commit.autobuild = /my/build/hook incoming.autobuild = /my/build/hook
changegroup;; changegroup;;
Run after a changegroup has been added via push or pull. Passed Run after a changegroup has been added via push or pull. Passed
the ID of the first new changeset in $NODE. the ID of the first new changeset in $NODE.
commit;; commit;;
Run after a changeset has been created or for each changeset Run after a changeset has been created in the local repository.
pulled. Passed the ID of the newly created changeset in Passed the ID of the newly created changeset in environment
environment variable $NODE. 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;; precommit;;
Run before starting a commit. Exit status 0 allows the commit to Run before starting a commit. Exit status 0 allows the commit to
proceed. Non-zero status will cause the commit to fail. proceed. Non-zero status will cause the commit to fail.