comparison mercurial/help/config.txt @ 28077:27ae22a4f9f9

doc: describe full help document hierarchy to create a valid link in HTML For example, ":hg:`help config.default-push`" creates an invalid link to "hgrc.5.html#default-push" in HTML, but ":hg:`help config.paths.default-push`" creates a valid link to "hgrc.5.html#paths".
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Thu, 11 Feb 2016 23:15:34 +0900
parents b7bf2b0731be
children 41dcd7545266
comparison
equal deleted inserted replaced
28076:18c6b271579b 28077:27ae22a4f9f9
798 ``$HG_NODE``. URL that was source of changes came is in ``$HG_URL``. 798 ``$HG_NODE``. URL that was source of changes came is in ``$HG_URL``.
799 799
800 ``outgoing`` 800 ``outgoing``
801 Run after sending changes from local repository to another. ID of 801 Run after sending changes from local repository to another. ID of
802 first changeset sent is in ``$HG_NODE``. Source of operation is in 802 first changeset sent is in ``$HG_NODE``. Source of operation is in
803 ``$HG_SOURCE``; Also see :hg:`help config.preoutgoing` hook. 803 ``$HG_SOURCE``; Also see :hg:`help config.hooks.preoutgoing` hook.
804 804
805 ``post-<command>`` 805 ``post-<command>``
806 Run after successful invocations of the associated command. The 806 Run after successful invocations of the associated command. The
807 contents of the command line are passed as ``$HG_ARGS`` and the result 807 contents of the command line are passed as ``$HG_ARGS`` and the result
808 code in ``$HG_RESULT``. Parsed command line arguments are passed as 808 code in ``$HG_RESULT``. Parsed command line arguments are passed as
879 changes will set ``HG_BOOKMARK_MOVED`` and ``HG_PHASES_MOVED`` to ``1``, etc. 879 changes will set ``HG_BOOKMARK_MOVED`` and ``HG_PHASES_MOVED`` to ``1``, etc.
880 880
881 ``txnclose`` 881 ``txnclose``
882 Run after any repository transaction has been committed. At this 882 Run after any repository transaction has been committed. At this
883 point, the transaction can no longer be rolled back. The hook will run 883 point, the transaction can no longer be rolled back. The hook will run
884 after the lock is released. See :hg:`help config.pretxnclose` docs for 884 after the lock is released. See :hg:`help config.hooks.pretxnclose` docs for
885 details about available variables. 885 details about available variables.
886 886
887 ``txnabort`` 887 ``txnabort``
888 Run when a transaction is aborted. See :hg:`help config.pretxnclose` 888 Run when a transaction is aborted. See :hg:`help config.hooks.pretxnclose`
889 docs for details about available variables. 889 docs for details about available variables.
890 890
891 ``pretxnchangegroup`` 891 ``pretxnchangegroup``
892 Run after a changegroup has been added via push, pull or unbundle, but before 892 Run after a changegroup has been added via push, pull or unbundle, but before
893 the transaction has been committed. Changegroup is visible to hook program. 893 the transaction has been committed. Changegroup is visible to hook program.