Show More
@@ -259,6 +259,14 b' hooks::' | |||||
259 | Run after sending changes from local repository to another. ID of |
|
259 | Run after sending changes from local repository to another. ID of | |
260 | first changeset sent is in $HG_NODE. Source of operation is in |
|
260 | first changeset sent is in $HG_NODE. Source of operation is in | |
261 | $HG_SOURCE; see "preoutgoing" hook for description. |
|
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 | prechangegroup;; |
|
270 | prechangegroup;; | |
263 | Run before a changegroup is added via push, pull or unbundle. |
|
271 | Run before a changegroup is added via push, pull or unbundle. | |
264 | Exit status 0 allows the changegroup to proceed. Non-zero status |
|
272 | Exit status 0 allows the changegroup to proceed. Non-zero status | |
@@ -312,14 +320,6 b' hooks::' | |||||
312 | new parent is in $HG_PARENT1. If merge, ID of second new parent |
|
320 | new parent is in $HG_PARENT1. If merge, ID of second new parent | |
313 | is in $HG_PARENT2. If update succeeded, $HG_ERROR=0. If update |
|
321 | is in $HG_PARENT2. If update succeeded, $HG_ERROR=0. If update | |
314 | failed (e.g. because conflicts not resolved), $HG_ERROR=1. |
|
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 | Note: it is generally better to use standard hooks rather than the |
|
324 | Note: it is generally better to use standard hooks rather than the | |
325 | generic pre- and post- command hooks as they are guaranteed to be |
|
325 | generic pre- and post- command hooks as they are guaranteed to be | |
@@ -442,8 +442,6 b' ui::' | |||||
442 | Allow to prompt the user. True or False. Default is True. |
|
442 | Allow to prompt the user. True or False. Default is True. | |
443 | logtemplate;; |
|
443 | logtemplate;; | |
444 | Template string for commands that print changesets. |
|
444 | Template string for commands that print changesets. | |
445 | style;; |
|
|||
446 | Name of style to use for command output. |
|
|||
447 | merge;; |
|
445 | merge;; | |
448 | The conflict resolution program to use during a manual merge. |
|
446 | The conflict resolution program to use during a manual merge. | |
449 | Default is "hgmerge". |
|
447 | Default is "hgmerge". | |
@@ -464,6 +462,8 b' ui::' | |||||
464 | strict;; |
|
462 | strict;; | |
465 | Require exact command names, instead of allowing unambiguous |
|
463 | Require exact command names, instead of allowing unambiguous | |
466 | abbreviations. True or False. Default is False. |
|
464 | abbreviations. True or False. Default is False. | |
|
465 | style;; | |||
|
466 | Name of style to use for command output. | |||
467 | timeout;; |
|
467 | timeout;; | |
468 | The timeout used when a lock is held (in seconds), a negative value |
|
468 | The timeout used when a lock is held (in seconds), a negative value | |
469 | means no timeout. Default is 600. |
|
469 | means no timeout. Default is 600. | |
@@ -523,6 +523,9 b' web::' | |||||
523 | description;; |
|
523 | description;; | |
524 | Textual description of the repository's purpose or contents. |
|
524 | Textual description of the repository's purpose or contents. | |
525 | Default is "unknown". |
|
525 | Default is "unknown". | |
|
526 | encoding;; | |||
|
527 | Character encoding name. | |||
|
528 | Example: "UTF-8" | |||
526 | errorlog;; |
|
529 | errorlog;; | |
527 | Where to output the error log. Default is stderr. |
|
530 | Where to output the error log. Default is stderr. | |
528 | hidden;; |
|
531 | hidden;; | |
@@ -553,9 +556,6 b' web::' | |||||
553 | Which template map style to use. |
|
556 | Which template map style to use. | |
554 | templates;; |
|
557 | templates;; | |
555 | Where to find the HTML templates. Default is install path. |
|
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 | AUTHOR |
|
561 | AUTHOR |
General Comments 0
You need to be logged in to leave comments.
Login now