Mercurial > hg-stable
changeset 1714:eabfbd220f39
fix hgrc doc hook descriptions.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Sat, 11 Feb 2006 00:31:52 -0800 |
parents | 03ee100b8c21 |
children | 40346aa66b0f |
files | doc/hgrc.5.txt |
diffstat | 1 files changed, 10 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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.