##// END OF EJS Templates
Fixed sorting inside nearly sorted sections in hgrc.5
Thomas Arendsen Hein -
r4715:ad45209a default
parent child Browse files
Show More
@@ -259,6 +259,14 b' hooks::'
259 259 Run after sending changes from local repository to another. ID of
260 260 first changeset sent is in $HG_NODE. Source of operation is in
261 261 $HG_SOURCE; see "preoutgoing" hook for description.
262 post-<command>;;
263 Run after successful invocations of the associated command. The
264 contents of the command line are passed as $HG_ARGS and the result
265 code in $HG_RESULT. Hook failure is ignored.
266 pre-<command>;;
267 Run before executing the associated command. The contents of the
268 command line are passed as $HG_ARGS. If the hook returns failure,
269 the command doesn't execute and Mercurial returns the failure code.
262 270 prechangegroup;;
263 271 Run before a changegroup is added via push, pull or unbundle.
264 272 Exit status 0 allows the changegroup to proceed. Non-zero status
@@ -312,14 +320,6 b' hooks::'
312 320 new parent is in $HG_PARENT1. If merge, ID of second new parent
313 321 is in $HG_PARENT2. If update succeeded, $HG_ERROR=0. If update
314 322 failed (e.g. because conflicts not resolved), $HG_ERROR=1.
315 pre-<command>;;
316 Run before executing the associated command. The contents of the
317 command line are passed as $HG_ARGS. If the hook returns failure,
318 the command doesn't execute and Mercurial returns the failure code.
319 post-<command>;;
320 Run after successful invocations of the associated command. The
321 contents of the command line are passed as $HG_ARGS and the result
322 code in $HG_RESULT. Hook failure is ignored.
323 323
324 324 Note: it is generally better to use standard hooks rather than the
325 325 generic pre- and post- command hooks as they are guaranteed to be
@@ -442,8 +442,6 b' ui::'
442 442 Allow to prompt the user. True or False. Default is True.
443 443 logtemplate;;
444 444 Template string for commands that print changesets.
445 style;;
446 Name of style to use for command output.
447 445 merge;;
448 446 The conflict resolution program to use during a manual merge.
449 447 Default is "hgmerge".
@@ -464,6 +462,8 b' ui::'
464 462 strict;;
465 463 Require exact command names, instead of allowing unambiguous
466 464 abbreviations. True or False. Default is False.
465 style;;
466 Name of style to use for command output.
467 467 timeout;;
468 468 The timeout used when a lock is held (in seconds), a negative value
469 469 means no timeout. Default is 600.
@@ -523,6 +523,9 b' web::'
523 523 description;;
524 524 Textual description of the repository's purpose or contents.
525 525 Default is "unknown".
526 encoding;;
527 Character encoding name.
528 Example: "UTF-8"
526 529 errorlog;;
527 530 Where to output the error log. Default is stderr.
528 531 hidden;;
@@ -553,9 +556,6 b' web::'
553 556 Which template map style to use.
554 557 templates;;
555 558 Where to find the HTML templates. Default is install path.
556 encoding;;
557 Character encoding name.
558 Example: "UTF-8"
559 559
560 560
561 561 AUTHOR
General Comments 0
You need to be logged in to leave comments. Login now