##// END OF EJS Templates
help/config: expand [subpaths] help...
Martin Geisler -
r16549:517b2560 stable
parent child Browse files
Show More
@@ -1,1420 +1,1424 b''
1 The Mercurial system uses a set of configuration files to control
1 The Mercurial system uses a set of configuration files to control
2 aspects of its behavior.
2 aspects of its behavior.
3
3
4 The configuration files use a simple ini-file format. A configuration
4 The configuration files use a simple ini-file format. A configuration
5 file consists of sections, led by a ``[section]`` header and followed
5 file consists of sections, led by a ``[section]`` header and followed
6 by ``name = value`` entries::
6 by ``name = value`` entries::
7
7
8 [ui]
8 [ui]
9 username = Firstname Lastname <firstname.lastname@example.net>
9 username = Firstname Lastname <firstname.lastname@example.net>
10 verbose = True
10 verbose = True
11
11
12 The above entries will be referred to as ``ui.username`` and
12 The above entries will be referred to as ``ui.username`` and
13 ``ui.verbose``, respectively. See the Syntax section below.
13 ``ui.verbose``, respectively. See the Syntax section below.
14
14
15 Files
15 Files
16 -----
16 -----
17
17
18 Mercurial reads configuration data from several files, if they exist.
18 Mercurial reads configuration data from several files, if they exist.
19 These files do not exist by default and you will have to create the
19 These files do not exist by default and you will have to create the
20 appropriate configuration files yourself: global configuration like
20 appropriate configuration files yourself: global configuration like
21 the username setting is typically put into
21 the username setting is typically put into
22 ``%USERPROFILE%\mercurial.ini`` or ``$HOME/.hgrc`` and local
22 ``%USERPROFILE%\mercurial.ini`` or ``$HOME/.hgrc`` and local
23 configuration is put into the per-repository ``<repo>/.hg/hgrc`` file.
23 configuration is put into the per-repository ``<repo>/.hg/hgrc`` file.
24
24
25 The names of these files depend on the system on which Mercurial is
25 The names of these files depend on the system on which Mercurial is
26 installed. ``*.rc`` files from a single directory are read in
26 installed. ``*.rc`` files from a single directory are read in
27 alphabetical order, later ones overriding earlier ones. Where multiple
27 alphabetical order, later ones overriding earlier ones. Where multiple
28 paths are given below, settings from earlier paths override later
28 paths are given below, settings from earlier paths override later
29 ones.
29 ones.
30
30
31 | (All) ``<repo>/.hg/hgrc``
31 | (All) ``<repo>/.hg/hgrc``
32
32
33 Per-repository configuration options that only apply in a
33 Per-repository configuration options that only apply in a
34 particular repository. This file is not version-controlled, and
34 particular repository. This file is not version-controlled, and
35 will not get transferred during a "clone" operation. Options in
35 will not get transferred during a "clone" operation. Options in
36 this file override options in all other configuration files. On
36 this file override options in all other configuration files. On
37 Plan 9 and Unix, most of this file will be ignored if it doesn't
37 Plan 9 and Unix, most of this file will be ignored if it doesn't
38 belong to a trusted user or to a trusted group. See the documentation
38 belong to a trusted user or to a trusted group. See the documentation
39 for the ``[trusted]`` section below for more details.
39 for the ``[trusted]`` section below for more details.
40
40
41 | (Plan 9) ``$home/lib/hgrc``
41 | (Plan 9) ``$home/lib/hgrc``
42 | (Unix) ``$HOME/.hgrc``
42 | (Unix) ``$HOME/.hgrc``
43 | (Windows) ``%USERPROFILE%\.hgrc``
43 | (Windows) ``%USERPROFILE%\.hgrc``
44 | (Windows) ``%USERPROFILE%\Mercurial.ini``
44 | (Windows) ``%USERPROFILE%\Mercurial.ini``
45 | (Windows) ``%HOME%\.hgrc``
45 | (Windows) ``%HOME%\.hgrc``
46 | (Windows) ``%HOME%\Mercurial.ini``
46 | (Windows) ``%HOME%\Mercurial.ini``
47
47
48 Per-user configuration file(s), for the user running Mercurial. On
48 Per-user configuration file(s), for the user running Mercurial. On
49 Windows 9x, ``%HOME%`` is replaced by ``%APPDATA%``. Options in these
49 Windows 9x, ``%HOME%`` is replaced by ``%APPDATA%``. Options in these
50 files apply to all Mercurial commands executed by this user in any
50 files apply to all Mercurial commands executed by this user in any
51 directory. Options in these files override per-system and per-installation
51 directory. Options in these files override per-system and per-installation
52 options.
52 options.
53
53
54 | (Plan 9) ``/lib/mercurial/hgrc``
54 | (Plan 9) ``/lib/mercurial/hgrc``
55 | (Plan 9) ``/lib/mercurial/hgrc.d/*.rc``
55 | (Plan 9) ``/lib/mercurial/hgrc.d/*.rc``
56 | (Unix) ``/etc/mercurial/hgrc``
56 | (Unix) ``/etc/mercurial/hgrc``
57 | (Unix) ``/etc/mercurial/hgrc.d/*.rc``
57 | (Unix) ``/etc/mercurial/hgrc.d/*.rc``
58
58
59 Per-system configuration files, for the system on which Mercurial
59 Per-system configuration files, for the system on which Mercurial
60 is running. Options in these files apply to all Mercurial commands
60 is running. Options in these files apply to all Mercurial commands
61 executed by any user in any directory. Options in these files
61 executed by any user in any directory. Options in these files
62 override per-installation options.
62 override per-installation options.
63
63
64 | (Plan 9) ``<install-root>/lib/mercurial/hgrc``
64 | (Plan 9) ``<install-root>/lib/mercurial/hgrc``
65 | (Plan 9) ``<install-root>/lib/mercurial/hgrc.d/*.rc``
65 | (Plan 9) ``<install-root>/lib/mercurial/hgrc.d/*.rc``
66 | (Unix) ``<install-root>/etc/mercurial/hgrc``
66 | (Unix) ``<install-root>/etc/mercurial/hgrc``
67 | (Unix) ``<install-root>/etc/mercurial/hgrc.d/*.rc``
67 | (Unix) ``<install-root>/etc/mercurial/hgrc.d/*.rc``
68
68
69 Per-installation configuration files, searched for in the
69 Per-installation configuration files, searched for in the
70 directory where Mercurial is installed. ``<install-root>`` is the
70 directory where Mercurial is installed. ``<install-root>`` is the
71 parent directory of the **hg** executable (or symlink) being run. For
71 parent directory of the **hg** executable (or symlink) being run. For
72 example, if installed in ``/shared/tools/bin/hg``, Mercurial will look
72 example, if installed in ``/shared/tools/bin/hg``, Mercurial will look
73 in ``/shared/tools/etc/mercurial/hgrc``. Options in these files apply
73 in ``/shared/tools/etc/mercurial/hgrc``. Options in these files apply
74 to all Mercurial commands executed by any user in any directory.
74 to all Mercurial commands executed by any user in any directory.
75
75
76 | (Windows) ``<install-dir>\Mercurial.ini`` **or**
76 | (Windows) ``<install-dir>\Mercurial.ini`` **or**
77 | (Windows) ``<install-dir>\hgrc.d\*.rc`` **or**
77 | (Windows) ``<install-dir>\hgrc.d\*.rc`` **or**
78 | (Windows) ``HKEY_LOCAL_MACHINE\SOFTWARE\Mercurial``
78 | (Windows) ``HKEY_LOCAL_MACHINE\SOFTWARE\Mercurial``
79
79
80 Per-installation/system configuration files, for the system on
80 Per-installation/system configuration files, for the system on
81 which Mercurial is running. Options in these files apply to all
81 which Mercurial is running. Options in these files apply to all
82 Mercurial commands executed by any user in any directory. Registry
82 Mercurial commands executed by any user in any directory. Registry
83 keys contain PATH-like strings, every part of which must reference
83 keys contain PATH-like strings, every part of which must reference
84 a ``Mercurial.ini`` file or be a directory where ``*.rc`` files will
84 a ``Mercurial.ini`` file or be a directory where ``*.rc`` files will
85 be read. Mercurial checks each of these locations in the specified
85 be read. Mercurial checks each of these locations in the specified
86 order until one or more configuration files are detected. If the
86 order until one or more configuration files are detected. If the
87 pywin32 extensions are not installed, Mercurial will only look for
87 pywin32 extensions are not installed, Mercurial will only look for
88 site-wide configuration in ``C:\Mercurial\Mercurial.ini``.
88 site-wide configuration in ``C:\Mercurial\Mercurial.ini``.
89
89
90 Syntax
90 Syntax
91 ------
91 ------
92
92
93 A configuration file consists of sections, led by a ``[section]`` header
93 A configuration file consists of sections, led by a ``[section]`` header
94 and followed by ``name = value`` entries (sometimes called
94 and followed by ``name = value`` entries (sometimes called
95 ``configuration keys``)::
95 ``configuration keys``)::
96
96
97 [spam]
97 [spam]
98 eggs=ham
98 eggs=ham
99 green=
99 green=
100 eggs
100 eggs
101
101
102 Each line contains one entry. If the lines that follow are indented,
102 Each line contains one entry. If the lines that follow are indented,
103 they are treated as continuations of that entry. Leading whitespace is
103 they are treated as continuations of that entry. Leading whitespace is
104 removed from values. Empty lines are skipped. Lines beginning with
104 removed from values. Empty lines are skipped. Lines beginning with
105 ``#`` or ``;`` are ignored and may be used to provide comments.
105 ``#`` or ``;`` are ignored and may be used to provide comments.
106
106
107 Configuration keys can be set multiple times, in which case Mercurial
107 Configuration keys can be set multiple times, in which case Mercurial
108 will use the value that was configured last. As an example::
108 will use the value that was configured last. As an example::
109
109
110 [spam]
110 [spam]
111 eggs=large
111 eggs=large
112 ham=serrano
112 ham=serrano
113 eggs=small
113 eggs=small
114
114
115 This would set the configuration key named ``eggs`` to ``small``.
115 This would set the configuration key named ``eggs`` to ``small``.
116
116
117 It is also possible to define a section multiple times. A section can
117 It is also possible to define a section multiple times. A section can
118 be redefined on the same and/or on different configuration files. For
118 be redefined on the same and/or on different configuration files. For
119 example::
119 example::
120
120
121 [foo]
121 [foo]
122 eggs=large
122 eggs=large
123 ham=serrano
123 ham=serrano
124 eggs=small
124 eggs=small
125
125
126 [bar]
126 [bar]
127 eggs=ham
127 eggs=ham
128 green=
128 green=
129 eggs
129 eggs
130
130
131 [foo]
131 [foo]
132 ham=prosciutto
132 ham=prosciutto
133 eggs=medium
133 eggs=medium
134 bread=toasted
134 bread=toasted
135
135
136 This would set the ``eggs``, ``ham``, and ``bread`` configuration keys
136 This would set the ``eggs``, ``ham``, and ``bread`` configuration keys
137 of the ``foo`` section to ``medium``, ``prosciutto``, and ``toasted``,
137 of the ``foo`` section to ``medium``, ``prosciutto``, and ``toasted``,
138 respectively. As you can see there only thing that matters is the last
138 respectively. As you can see there only thing that matters is the last
139 value that was set for each of the configuration keys.
139 value that was set for each of the configuration keys.
140
140
141 If a configuration key is set multiple times in different
141 If a configuration key is set multiple times in different
142 configuration files the final value will depend on the order in which
142 configuration files the final value will depend on the order in which
143 the different configuration files are read, with settings from earlier
143 the different configuration files are read, with settings from earlier
144 paths overriding later ones as described on the ``Files`` section
144 paths overriding later ones as described on the ``Files`` section
145 above.
145 above.
146
146
147 A line of the form ``%include file`` will include ``file`` into the
147 A line of the form ``%include file`` will include ``file`` into the
148 current configuration file. The inclusion is recursive, which means
148 current configuration file. The inclusion is recursive, which means
149 that included files can include other files. Filenames are relative to
149 that included files can include other files. Filenames are relative to
150 the configuration file in which the ``%include`` directive is found.
150 the configuration file in which the ``%include`` directive is found.
151 Environment variables and ``~user`` constructs are expanded in
151 Environment variables and ``~user`` constructs are expanded in
152 ``file``. This lets you do something like::
152 ``file``. This lets you do something like::
153
153
154 %include ~/.hgrc.d/$HOST.rc
154 %include ~/.hgrc.d/$HOST.rc
155
155
156 to include a different configuration file on each computer you use.
156 to include a different configuration file on each computer you use.
157
157
158 A line with ``%unset name`` will remove ``name`` from the current
158 A line with ``%unset name`` will remove ``name`` from the current
159 section, if it has been set previously.
159 section, if it has been set previously.
160
160
161 The values are either free-form text strings, lists of text strings,
161 The values are either free-form text strings, lists of text strings,
162 or Boolean values. Boolean values can be set to true using any of "1",
162 or Boolean values. Boolean values can be set to true using any of "1",
163 "yes", "true", or "on" and to false using "0", "no", "false", or "off"
163 "yes", "true", or "on" and to false using "0", "no", "false", or "off"
164 (all case insensitive).
164 (all case insensitive).
165
165
166 List values are separated by whitespace or comma, except when values are
166 List values are separated by whitespace or comma, except when values are
167 placed in double quotation marks::
167 placed in double quotation marks::
168
168
169 allow_read = "John Doe, PhD", brian, betty
169 allow_read = "John Doe, PhD", brian, betty
170
170
171 Quotation marks can be escaped by prefixing them with a backslash. Only
171 Quotation marks can be escaped by prefixing them with a backslash. Only
172 quotation marks at the beginning of a word is counted as a quotation
172 quotation marks at the beginning of a word is counted as a quotation
173 (e.g., ``foo"bar baz`` is the list of ``foo"bar`` and ``baz``).
173 (e.g., ``foo"bar baz`` is the list of ``foo"bar`` and ``baz``).
174
174
175 Sections
175 Sections
176 --------
176 --------
177
177
178 This section describes the different sections that may appear in a
178 This section describes the different sections that may appear in a
179 Mercurial configuration file, the purpose of each section, its possible
179 Mercurial configuration file, the purpose of each section, its possible
180 keys, and their possible values.
180 keys, and their possible values.
181
181
182 ``alias``
182 ``alias``
183 """""""""
183 """""""""
184
184
185 Defines command aliases.
185 Defines command aliases.
186 Aliases allow you to define your own commands in terms of other
186 Aliases allow you to define your own commands in terms of other
187 commands (or aliases), optionally including arguments. Positional
187 commands (or aliases), optionally including arguments. Positional
188 arguments in the form of ``$1``, ``$2``, etc in the alias definition
188 arguments in the form of ``$1``, ``$2``, etc in the alias definition
189 are expanded by Mercurial before execution. Positional arguments not
189 are expanded by Mercurial before execution. Positional arguments not
190 already used by ``$N`` in the definition are put at the end of the
190 already used by ``$N`` in the definition are put at the end of the
191 command to be executed.
191 command to be executed.
192
192
193 Alias definitions consist of lines of the form::
193 Alias definitions consist of lines of the form::
194
194
195 <alias> = <command> [<argument>]...
195 <alias> = <command> [<argument>]...
196
196
197 For example, this definition::
197 For example, this definition::
198
198
199 latest = log --limit 5
199 latest = log --limit 5
200
200
201 creates a new command ``latest`` that shows only the five most recent
201 creates a new command ``latest`` that shows only the five most recent
202 changesets. You can define subsequent aliases using earlier ones::
202 changesets. You can define subsequent aliases using earlier ones::
203
203
204 stable5 = latest -b stable
204 stable5 = latest -b stable
205
205
206 .. note:: It is possible to create aliases with the same names as
206 .. note:: It is possible to create aliases with the same names as
207 existing commands, which will then override the original
207 existing commands, which will then override the original
208 definitions. This is almost always a bad idea!
208 definitions. This is almost always a bad idea!
209
209
210 An alias can start with an exclamation point (``!``) to make it a
210 An alias can start with an exclamation point (``!``) to make it a
211 shell alias. A shell alias is executed with the shell and will let you
211 shell alias. A shell alias is executed with the shell and will let you
212 run arbitrary commands. As an example, ::
212 run arbitrary commands. As an example, ::
213
213
214 echo = !echo $@
214 echo = !echo $@
215
215
216 will let you do ``hg echo foo`` to have ``foo`` printed in your
216 will let you do ``hg echo foo`` to have ``foo`` printed in your
217 terminal. A better example might be::
217 terminal. A better example might be::
218
218
219 purge = !$HG status --no-status --unknown -0 | xargs -0 rm
219 purge = !$HG status --no-status --unknown -0 | xargs -0 rm
220
220
221 which will make ``hg purge`` delete all unknown files in the
221 which will make ``hg purge`` delete all unknown files in the
222 repository in the same manner as the purge extension.
222 repository in the same manner as the purge extension.
223
223
224 Positional arguments like ``$1``, ``$2``, etc. in the alias definition
224 Positional arguments like ``$1``, ``$2``, etc. in the alias definition
225 expand to the command arguments. Unmatched arguments are
225 expand to the command arguments. Unmatched arguments are
226 removed. ``$0`` expands to the alias name and ``$@`` expands to all
226 removed. ``$0`` expands to the alias name and ``$@`` expands to all
227 arguments separated by a space. These expansions happen before the
227 arguments separated by a space. These expansions happen before the
228 command is passed to the shell.
228 command is passed to the shell.
229
229
230 Shell aliases are executed in an environment where ``$HG`` expands to
230 Shell aliases are executed in an environment where ``$HG`` expands to
231 the path of the Mercurial that was used to execute the alias. This is
231 the path of the Mercurial that was used to execute the alias. This is
232 useful when you want to call further Mercurial commands in a shell
232 useful when you want to call further Mercurial commands in a shell
233 alias, as was done above for the purge alias. In addition,
233 alias, as was done above for the purge alias. In addition,
234 ``$HG_ARGS`` expands to the arguments given to Mercurial. In the ``hg
234 ``$HG_ARGS`` expands to the arguments given to Mercurial. In the ``hg
235 echo foo`` call above, ``$HG_ARGS`` would expand to ``echo foo``.
235 echo foo`` call above, ``$HG_ARGS`` would expand to ``echo foo``.
236
236
237 .. note:: Some global configuration options such as ``-R`` are
237 .. note:: Some global configuration options such as ``-R`` are
238 processed before shell aliases and will thus not be passed to
238 processed before shell aliases and will thus not be passed to
239 aliases.
239 aliases.
240
240
241
241
242 ``annotate``
242 ``annotate``
243 """"""""""""
243 """"""""""""
244
244
245 Settings used when displaying file annotations. All values are
245 Settings used when displaying file annotations. All values are
246 Booleans and default to False. See ``diff`` section for related
246 Booleans and default to False. See ``diff`` section for related
247 options for the diff command.
247 options for the diff command.
248
248
249 ``ignorews``
249 ``ignorews``
250 Ignore white space when comparing lines.
250 Ignore white space when comparing lines.
251
251
252 ``ignorewsamount``
252 ``ignorewsamount``
253 Ignore changes in the amount of white space.
253 Ignore changes in the amount of white space.
254
254
255 ``ignoreblanklines``
255 ``ignoreblanklines``
256 Ignore changes whose lines are all blank.
256 Ignore changes whose lines are all blank.
257
257
258
258
259 ``auth``
259 ``auth``
260 """"""""
260 """"""""
261
261
262 Authentication credentials for HTTP authentication. This section
262 Authentication credentials for HTTP authentication. This section
263 allows you to store usernames and passwords for use when logging
263 allows you to store usernames and passwords for use when logging
264 *into* HTTP servers. See the ``[web]`` configuration section if
264 *into* HTTP servers. See the ``[web]`` configuration section if
265 you want to configure *who* can login to your HTTP server.
265 you want to configure *who* can login to your HTTP server.
266
266
267 Each line has the following format::
267 Each line has the following format::
268
268
269 <name>.<argument> = <value>
269 <name>.<argument> = <value>
270
270
271 where ``<name>`` is used to group arguments into authentication
271 where ``<name>`` is used to group arguments into authentication
272 entries. Example::
272 entries. Example::
273
273
274 foo.prefix = hg.intevation.org/mercurial
274 foo.prefix = hg.intevation.org/mercurial
275 foo.username = foo
275 foo.username = foo
276 foo.password = bar
276 foo.password = bar
277 foo.schemes = http https
277 foo.schemes = http https
278
278
279 bar.prefix = secure.example.org
279 bar.prefix = secure.example.org
280 bar.key = path/to/file.key
280 bar.key = path/to/file.key
281 bar.cert = path/to/file.cert
281 bar.cert = path/to/file.cert
282 bar.schemes = https
282 bar.schemes = https
283
283
284 Supported arguments:
284 Supported arguments:
285
285
286 ``prefix``
286 ``prefix``
287 Either ``*`` or a URI prefix with or without the scheme part.
287 Either ``*`` or a URI prefix with or without the scheme part.
288 The authentication entry with the longest matching prefix is used
288 The authentication entry with the longest matching prefix is used
289 (where ``*`` matches everything and counts as a match of length
289 (where ``*`` matches everything and counts as a match of length
290 1). If the prefix doesn't include a scheme, the match is performed
290 1). If the prefix doesn't include a scheme, the match is performed
291 against the URI with its scheme stripped as well, and the schemes
291 against the URI with its scheme stripped as well, and the schemes
292 argument, q.v., is then subsequently consulted.
292 argument, q.v., is then subsequently consulted.
293
293
294 ``username``
294 ``username``
295 Optional. Username to authenticate with. If not given, and the
295 Optional. Username to authenticate with. If not given, and the
296 remote site requires basic or digest authentication, the user will
296 remote site requires basic or digest authentication, the user will
297 be prompted for it. Environment variables are expanded in the
297 be prompted for it. Environment variables are expanded in the
298 username letting you do ``foo.username = $USER``. If the URI
298 username letting you do ``foo.username = $USER``. If the URI
299 includes a username, only ``[auth]`` entries with a matching
299 includes a username, only ``[auth]`` entries with a matching
300 username or without a username will be considered.
300 username or without a username will be considered.
301
301
302 ``password``
302 ``password``
303 Optional. Password to authenticate with. If not given, and the
303 Optional. Password to authenticate with. If not given, and the
304 remote site requires basic or digest authentication, the user
304 remote site requires basic or digest authentication, the user
305 will be prompted for it.
305 will be prompted for it.
306
306
307 ``key``
307 ``key``
308 Optional. PEM encoded client certificate key file. Environment
308 Optional. PEM encoded client certificate key file. Environment
309 variables are expanded in the filename.
309 variables are expanded in the filename.
310
310
311 ``cert``
311 ``cert``
312 Optional. PEM encoded client certificate chain file. Environment
312 Optional. PEM encoded client certificate chain file. Environment
313 variables are expanded in the filename.
313 variables are expanded in the filename.
314
314
315 ``schemes``
315 ``schemes``
316 Optional. Space separated list of URI schemes to use this
316 Optional. Space separated list of URI schemes to use this
317 authentication entry with. Only used if the prefix doesn't include
317 authentication entry with. Only used if the prefix doesn't include
318 a scheme. Supported schemes are http and https. They will match
318 a scheme. Supported schemes are http and https. They will match
319 static-http and static-https respectively, as well.
319 static-http and static-https respectively, as well.
320 Default: https.
320 Default: https.
321
321
322 If no suitable authentication entry is found, the user is prompted
322 If no suitable authentication entry is found, the user is prompted
323 for credentials as usual if required by the remote.
323 for credentials as usual if required by the remote.
324
324
325
325
326 ``decode/encode``
326 ``decode/encode``
327 """""""""""""""""
327 """""""""""""""""
328
328
329 Filters for transforming files on checkout/checkin. This would
329 Filters for transforming files on checkout/checkin. This would
330 typically be used for newline processing or other
330 typically be used for newline processing or other
331 localization/canonicalization of files.
331 localization/canonicalization of files.
332
332
333 Filters consist of a filter pattern followed by a filter command.
333 Filters consist of a filter pattern followed by a filter command.
334 Filter patterns are globs by default, rooted at the repository root.
334 Filter patterns are globs by default, rooted at the repository root.
335 For example, to match any file ending in ``.txt`` in the root
335 For example, to match any file ending in ``.txt`` in the root
336 directory only, use the pattern ``*.txt``. To match any file ending
336 directory only, use the pattern ``*.txt``. To match any file ending
337 in ``.c`` anywhere in the repository, use the pattern ``**.c``.
337 in ``.c`` anywhere in the repository, use the pattern ``**.c``.
338 For each file only the first matching filter applies.
338 For each file only the first matching filter applies.
339
339
340 The filter command can start with a specifier, either ``pipe:`` or
340 The filter command can start with a specifier, either ``pipe:`` or
341 ``tempfile:``. If no specifier is given, ``pipe:`` is used by default.
341 ``tempfile:``. If no specifier is given, ``pipe:`` is used by default.
342
342
343 A ``pipe:`` command must accept data on stdin and return the transformed
343 A ``pipe:`` command must accept data on stdin and return the transformed
344 data on stdout.
344 data on stdout.
345
345
346 Pipe example::
346 Pipe example::
347
347
348 [encode]
348 [encode]
349 # uncompress gzip files on checkin to improve delta compression
349 # uncompress gzip files on checkin to improve delta compression
350 # note: not necessarily a good idea, just an example
350 # note: not necessarily a good idea, just an example
351 *.gz = pipe: gunzip
351 *.gz = pipe: gunzip
352
352
353 [decode]
353 [decode]
354 # recompress gzip files when writing them to the working dir (we
354 # recompress gzip files when writing them to the working dir (we
355 # can safely omit "pipe:", because it's the default)
355 # can safely omit "pipe:", because it's the default)
356 *.gz = gzip
356 *.gz = gzip
357
357
358 A ``tempfile:`` command is a template. The string ``INFILE`` is replaced
358 A ``tempfile:`` command is a template. The string ``INFILE`` is replaced
359 with the name of a temporary file that contains the data to be
359 with the name of a temporary file that contains the data to be
360 filtered by the command. The string ``OUTFILE`` is replaced with the name
360 filtered by the command. The string ``OUTFILE`` is replaced with the name
361 of an empty temporary file, where the filtered data must be written by
361 of an empty temporary file, where the filtered data must be written by
362 the command.
362 the command.
363
363
364 .. note:: The tempfile mechanism is recommended for Windows systems,
364 .. note:: The tempfile mechanism is recommended for Windows systems,
365 where the standard shell I/O redirection operators often have
365 where the standard shell I/O redirection operators often have
366 strange effects and may corrupt the contents of your files.
366 strange effects and may corrupt the contents of your files.
367
367
368 This filter mechanism is used internally by the ``eol`` extension to
368 This filter mechanism is used internally by the ``eol`` extension to
369 translate line ending characters between Windows (CRLF) and Unix (LF)
369 translate line ending characters between Windows (CRLF) and Unix (LF)
370 format. We suggest you use the ``eol`` extension for convenience.
370 format. We suggest you use the ``eol`` extension for convenience.
371
371
372
372
373 ``defaults``
373 ``defaults``
374 """"""""""""
374 """"""""""""
375
375
376 (defaults are deprecated. Don't use them. Use aliases instead)
376 (defaults are deprecated. Don't use them. Use aliases instead)
377
377
378 Use the ``[defaults]`` section to define command defaults, i.e. the
378 Use the ``[defaults]`` section to define command defaults, i.e. the
379 default options/arguments to pass to the specified commands.
379 default options/arguments to pass to the specified commands.
380
380
381 The following example makes :hg:`log` run in verbose mode, and
381 The following example makes :hg:`log` run in verbose mode, and
382 :hg:`status` show only the modified files, by default::
382 :hg:`status` show only the modified files, by default::
383
383
384 [defaults]
384 [defaults]
385 log = -v
385 log = -v
386 status = -m
386 status = -m
387
387
388 The actual commands, instead of their aliases, must be used when
388 The actual commands, instead of their aliases, must be used when
389 defining command defaults. The command defaults will also be applied
389 defining command defaults. The command defaults will also be applied
390 to the aliases of the commands defined.
390 to the aliases of the commands defined.
391
391
392
392
393 ``diff``
393 ``diff``
394 """"""""
394 """"""""
395
395
396 Settings used when displaying diffs. Everything except for ``unified``
396 Settings used when displaying diffs. Everything except for ``unified``
397 is a Boolean and defaults to False. See ``annotate`` section for
397 is a Boolean and defaults to False. See ``annotate`` section for
398 related options for the annotate command.
398 related options for the annotate command.
399
399
400 ``git``
400 ``git``
401 Use git extended diff format.
401 Use git extended diff format.
402
402
403 ``nodates``
403 ``nodates``
404 Don't include dates in diff headers.
404 Don't include dates in diff headers.
405
405
406 ``showfunc``
406 ``showfunc``
407 Show which function each change is in.
407 Show which function each change is in.
408
408
409 ``ignorews``
409 ``ignorews``
410 Ignore white space when comparing lines.
410 Ignore white space when comparing lines.
411
411
412 ``ignorewsamount``
412 ``ignorewsamount``
413 Ignore changes in the amount of white space.
413 Ignore changes in the amount of white space.
414
414
415 ``ignoreblanklines``
415 ``ignoreblanklines``
416 Ignore changes whose lines are all blank.
416 Ignore changes whose lines are all blank.
417
417
418 ``unified``
418 ``unified``
419 Number of lines of context to show.
419 Number of lines of context to show.
420
420
421 ``email``
421 ``email``
422 """""""""
422 """""""""
423
423
424 Settings for extensions that send email messages.
424 Settings for extensions that send email messages.
425
425
426 ``from``
426 ``from``
427 Optional. Email address to use in "From" header and SMTP envelope
427 Optional. Email address to use in "From" header and SMTP envelope
428 of outgoing messages.
428 of outgoing messages.
429
429
430 ``to``
430 ``to``
431 Optional. Comma-separated list of recipients' email addresses.
431 Optional. Comma-separated list of recipients' email addresses.
432
432
433 ``cc``
433 ``cc``
434 Optional. Comma-separated list of carbon copy recipients'
434 Optional. Comma-separated list of carbon copy recipients'
435 email addresses.
435 email addresses.
436
436
437 ``bcc``
437 ``bcc``
438 Optional. Comma-separated list of blind carbon copy recipients'
438 Optional. Comma-separated list of blind carbon copy recipients'
439 email addresses.
439 email addresses.
440
440
441 ``method``
441 ``method``
442 Optional. Method to use to send email messages. If value is ``smtp``
442 Optional. Method to use to send email messages. If value is ``smtp``
443 (default), use SMTP (see the ``[smtp]`` section for configuration).
443 (default), use SMTP (see the ``[smtp]`` section for configuration).
444 Otherwise, use as name of program to run that acts like sendmail
444 Otherwise, use as name of program to run that acts like sendmail
445 (takes ``-f`` option for sender, list of recipients on command line,
445 (takes ``-f`` option for sender, list of recipients on command line,
446 message on stdin). Normally, setting this to ``sendmail`` or
446 message on stdin). Normally, setting this to ``sendmail`` or
447 ``/usr/sbin/sendmail`` is enough to use sendmail to send messages.
447 ``/usr/sbin/sendmail`` is enough to use sendmail to send messages.
448
448
449 ``charsets``
449 ``charsets``
450 Optional. Comma-separated list of character sets considered
450 Optional. Comma-separated list of character sets considered
451 convenient for recipients. Addresses, headers, and parts not
451 convenient for recipients. Addresses, headers, and parts not
452 containing patches of outgoing messages will be encoded in the
452 containing patches of outgoing messages will be encoded in the
453 first character set to which conversion from local encoding
453 first character set to which conversion from local encoding
454 (``$HGENCODING``, ``ui.fallbackencoding``) succeeds. If correct
454 (``$HGENCODING``, ``ui.fallbackencoding``) succeeds. If correct
455 conversion fails, the text in question is sent as is. Defaults to
455 conversion fails, the text in question is sent as is. Defaults to
456 empty (explicit) list.
456 empty (explicit) list.
457
457
458 Order of outgoing email character sets:
458 Order of outgoing email character sets:
459
459
460 1. ``us-ascii``: always first, regardless of settings
460 1. ``us-ascii``: always first, regardless of settings
461 2. ``email.charsets``: in order given by user
461 2. ``email.charsets``: in order given by user
462 3. ``ui.fallbackencoding``: if not in email.charsets
462 3. ``ui.fallbackencoding``: if not in email.charsets
463 4. ``$HGENCODING``: if not in email.charsets
463 4. ``$HGENCODING``: if not in email.charsets
464 5. ``utf-8``: always last, regardless of settings
464 5. ``utf-8``: always last, regardless of settings
465
465
466 Email example::
466 Email example::
467
467
468 [email]
468 [email]
469 from = Joseph User <joe.user@example.com>
469 from = Joseph User <joe.user@example.com>
470 method = /usr/sbin/sendmail
470 method = /usr/sbin/sendmail
471 # charsets for western Europeans
471 # charsets for western Europeans
472 # us-ascii, utf-8 omitted, as they are tried first and last
472 # us-ascii, utf-8 omitted, as they are tried first and last
473 charsets = iso-8859-1, iso-8859-15, windows-1252
473 charsets = iso-8859-1, iso-8859-15, windows-1252
474
474
475
475
476 ``extensions``
476 ``extensions``
477 """"""""""""""
477 """"""""""""""
478
478
479 Mercurial has an extension mechanism for adding new features. To
479 Mercurial has an extension mechanism for adding new features. To
480 enable an extension, create an entry for it in this section.
480 enable an extension, create an entry for it in this section.
481
481
482 If you know that the extension is already in Python's search path,
482 If you know that the extension is already in Python's search path,
483 you can give the name of the module, followed by ``=``, with nothing
483 you can give the name of the module, followed by ``=``, with nothing
484 after the ``=``.
484 after the ``=``.
485
485
486 Otherwise, give a name that you choose, followed by ``=``, followed by
486 Otherwise, give a name that you choose, followed by ``=``, followed by
487 the path to the ``.py`` file (including the file name extension) that
487 the path to the ``.py`` file (including the file name extension) that
488 defines the extension.
488 defines the extension.
489
489
490 To explicitly disable an extension that is enabled in an hgrc of
490 To explicitly disable an extension that is enabled in an hgrc of
491 broader scope, prepend its path with ``!``, as in ``foo = !/ext/path``
491 broader scope, prepend its path with ``!``, as in ``foo = !/ext/path``
492 or ``foo = !`` when path is not supplied.
492 or ``foo = !`` when path is not supplied.
493
493
494 Example for ``~/.hgrc``::
494 Example for ``~/.hgrc``::
495
495
496 [extensions]
496 [extensions]
497 # (the mq extension will get loaded from Mercurial's path)
497 # (the mq extension will get loaded from Mercurial's path)
498 mq =
498 mq =
499 # (this extension will get loaded from the file specified)
499 # (this extension will get loaded from the file specified)
500 myfeature = ~/.hgext/myfeature.py
500 myfeature = ~/.hgext/myfeature.py
501
501
502
502
503 ``format``
503 ``format``
504 """"""""""
504 """"""""""
505
505
506 ``usestore``
506 ``usestore``
507 Enable or disable the "store" repository format which improves
507 Enable or disable the "store" repository format which improves
508 compatibility with systems that fold case or otherwise mangle
508 compatibility with systems that fold case or otherwise mangle
509 filenames. Enabled by default. Disabling this option will allow
509 filenames. Enabled by default. Disabling this option will allow
510 you to store longer filenames in some situations at the expense of
510 you to store longer filenames in some situations at the expense of
511 compatibility and ensures that the on-disk format of newly created
511 compatibility and ensures that the on-disk format of newly created
512 repositories will be compatible with Mercurial before version 0.9.4.
512 repositories will be compatible with Mercurial before version 0.9.4.
513
513
514 ``usefncache``
514 ``usefncache``
515 Enable or disable the "fncache" repository format which enhances
515 Enable or disable the "fncache" repository format which enhances
516 the "store" repository format (which has to be enabled to use
516 the "store" repository format (which has to be enabled to use
517 fncache) to allow longer filenames and avoids using Windows
517 fncache) to allow longer filenames and avoids using Windows
518 reserved names, e.g. "nul". Enabled by default. Disabling this
518 reserved names, e.g. "nul". Enabled by default. Disabling this
519 option ensures that the on-disk format of newly created
519 option ensures that the on-disk format of newly created
520 repositories will be compatible with Mercurial before version 1.1.
520 repositories will be compatible with Mercurial before version 1.1.
521
521
522 ``dotencode``
522 ``dotencode``
523 Enable or disable the "dotencode" repository format which enhances
523 Enable or disable the "dotencode" repository format which enhances
524 the "fncache" repository format (which has to be enabled to use
524 the "fncache" repository format (which has to be enabled to use
525 dotencode) to avoid issues with filenames starting with ._ on
525 dotencode) to avoid issues with filenames starting with ._ on
526 Mac OS X and spaces on Windows. Enabled by default. Disabling this
526 Mac OS X and spaces on Windows. Enabled by default. Disabling this
527 option ensures that the on-disk format of newly created
527 option ensures that the on-disk format of newly created
528 repositories will be compatible with Mercurial before version 1.7.
528 repositories will be compatible with Mercurial before version 1.7.
529
529
530 ``graph``
530 ``graph``
531 """""""""
531 """""""""
532
532
533 Web graph view configuration. This section let you change graph
533 Web graph view configuration. This section let you change graph
534 elements display properties by branches, for instance to make the
534 elements display properties by branches, for instance to make the
535 ``default`` branch stand out.
535 ``default`` branch stand out.
536
536
537 Each line has the following format::
537 Each line has the following format::
538
538
539 <branch>.<argument> = <value>
539 <branch>.<argument> = <value>
540
540
541 where ``<branch>`` is the name of the branch being
541 where ``<branch>`` is the name of the branch being
542 customized. Example::
542 customized. Example::
543
543
544 [graph]
544 [graph]
545 # 2px width
545 # 2px width
546 default.width = 2
546 default.width = 2
547 # red color
547 # red color
548 default.color = FF0000
548 default.color = FF0000
549
549
550 Supported arguments:
550 Supported arguments:
551
551
552 ``width``
552 ``width``
553 Set branch edges width in pixels.
553 Set branch edges width in pixels.
554
554
555 ``color``
555 ``color``
556 Set branch edges color in hexadecimal RGB notation.
556 Set branch edges color in hexadecimal RGB notation.
557
557
558 ``hooks``
558 ``hooks``
559 """""""""
559 """""""""
560
560
561 Commands or Python functions that get automatically executed by
561 Commands or Python functions that get automatically executed by
562 various actions such as starting or finishing a commit. Multiple
562 various actions such as starting or finishing a commit. Multiple
563 hooks can be run for the same action by appending a suffix to the
563 hooks can be run for the same action by appending a suffix to the
564 action. Overriding a site-wide hook can be done by changing its
564 action. Overriding a site-wide hook can be done by changing its
565 value or setting it to an empty string. Hooks can be prioritized
565 value or setting it to an empty string. Hooks can be prioritized
566 by adding a prefix of ``priority`` to the hook name on a new line
566 by adding a prefix of ``priority`` to the hook name on a new line
567 and setting the priority. The default priority is 0 if
567 and setting the priority. The default priority is 0 if
568 not specified.
568 not specified.
569
569
570 Example ``.hg/hgrc``::
570 Example ``.hg/hgrc``::
571
571
572 [hooks]
572 [hooks]
573 # update working directory after adding changesets
573 # update working directory after adding changesets
574 changegroup.update = hg update
574 changegroup.update = hg update
575 # do not use the site-wide hook
575 # do not use the site-wide hook
576 incoming =
576 incoming =
577 incoming.email = /my/email/hook
577 incoming.email = /my/email/hook
578 incoming.autobuild = /my/build/hook
578 incoming.autobuild = /my/build/hook
579 # force autobuild hook to run before other incoming hooks
579 # force autobuild hook to run before other incoming hooks
580 priority.incoming.autobuild = 1
580 priority.incoming.autobuild = 1
581
581
582 Most hooks are run with environment variables set that give useful
582 Most hooks are run with environment variables set that give useful
583 additional information. For each hook below, the environment
583 additional information. For each hook below, the environment
584 variables it is passed are listed with names of the form ``$HG_foo``.
584 variables it is passed are listed with names of the form ``$HG_foo``.
585
585
586 ``changegroup``
586 ``changegroup``
587 Run after a changegroup has been added via push, pull or unbundle.
587 Run after a changegroup has been added via push, pull or unbundle.
588 ID of the first new changeset is in ``$HG_NODE``. URL from which
588 ID of the first new changeset is in ``$HG_NODE``. URL from which
589 changes came is in ``$HG_URL``.
589 changes came is in ``$HG_URL``.
590
590
591 ``commit``
591 ``commit``
592 Run after a changeset has been created in the local repository. ID
592 Run after a changeset has been created in the local repository. ID
593 of the newly created changeset is in ``$HG_NODE``. Parent changeset
593 of the newly created changeset is in ``$HG_NODE``. Parent changeset
594 IDs are in ``$HG_PARENT1`` and ``$HG_PARENT2``.
594 IDs are in ``$HG_PARENT1`` and ``$HG_PARENT2``.
595
595
596 ``incoming``
596 ``incoming``
597 Run after a changeset has been pulled, pushed, or unbundled into
597 Run after a changeset has been pulled, pushed, or unbundled into
598 the local repository. The ID of the newly arrived changeset is in
598 the local repository. The ID of the newly arrived changeset is in
599 ``$HG_NODE``. URL that was source of changes came is in ``$HG_URL``.
599 ``$HG_NODE``. URL that was source of changes came is in ``$HG_URL``.
600
600
601 ``outgoing``
601 ``outgoing``
602 Run after sending changes from local repository to another. ID of
602 Run after sending changes from local repository to another. ID of
603 first changeset sent is in ``$HG_NODE``. Source of operation is in
603 first changeset sent is in ``$HG_NODE``. Source of operation is in
604 ``$HG_SOURCE``; see "preoutgoing" hook for description.
604 ``$HG_SOURCE``; see "preoutgoing" hook for description.
605
605
606 ``post-<command>``
606 ``post-<command>``
607 Run after successful invocations of the associated command. The
607 Run after successful invocations of the associated command. The
608 contents of the command line are passed as ``$HG_ARGS`` and the result
608 contents of the command line are passed as ``$HG_ARGS`` and the result
609 code in ``$HG_RESULT``. Parsed command line arguments are passed as
609 code in ``$HG_RESULT``. Parsed command line arguments are passed as
610 ``$HG_PATS`` and ``$HG_OPTS``. These contain string representations of
610 ``$HG_PATS`` and ``$HG_OPTS``. These contain string representations of
611 the python data internally passed to <command>. ``$HG_OPTS`` is a
611 the python data internally passed to <command>. ``$HG_OPTS`` is a
612 dictionary of options (with unspecified options set to their defaults).
612 dictionary of options (with unspecified options set to their defaults).
613 ``$HG_PATS`` is a list of arguments. Hook failure is ignored.
613 ``$HG_PATS`` is a list of arguments. Hook failure is ignored.
614
614
615 ``pre-<command>``
615 ``pre-<command>``
616 Run before executing the associated command. The contents of the
616 Run before executing the associated command. The contents of the
617 command line are passed as ``$HG_ARGS``. Parsed command line arguments
617 command line are passed as ``$HG_ARGS``. Parsed command line arguments
618 are passed as ``$HG_PATS`` and ``$HG_OPTS``. These contain string
618 are passed as ``$HG_PATS`` and ``$HG_OPTS``. These contain string
619 representations of the data internally passed to <command>. ``$HG_OPTS``
619 representations of the data internally passed to <command>. ``$HG_OPTS``
620 is a dictionary of options (with unspecified options set to their
620 is a dictionary of options (with unspecified options set to their
621 defaults). ``$HG_PATS`` is a list of arguments. If the hook returns
621 defaults). ``$HG_PATS`` is a list of arguments. If the hook returns
622 failure, the command doesn't execute and Mercurial returns the failure
622 failure, the command doesn't execute and Mercurial returns the failure
623 code.
623 code.
624
624
625 ``prechangegroup``
625 ``prechangegroup``
626 Run before a changegroup is added via push, pull or unbundle. Exit
626 Run before a changegroup is added via push, pull or unbundle. Exit
627 status 0 allows the changegroup to proceed. Non-zero status will
627 status 0 allows the changegroup to proceed. Non-zero status will
628 cause the push, pull or unbundle to fail. URL from which changes
628 cause the push, pull or unbundle to fail. URL from which changes
629 will come is in ``$HG_URL``.
629 will come is in ``$HG_URL``.
630
630
631 ``precommit``
631 ``precommit``
632 Run before starting a local commit. Exit status 0 allows the
632 Run before starting a local commit. Exit status 0 allows the
633 commit to proceed. Non-zero status will cause the commit to fail.
633 commit to proceed. Non-zero status will cause the commit to fail.
634 Parent changeset IDs are in ``$HG_PARENT1`` and ``$HG_PARENT2``.
634 Parent changeset IDs are in ``$HG_PARENT1`` and ``$HG_PARENT2``.
635
635
636 ``prelistkeys``
636 ``prelistkeys``
637 Run before listing pushkeys (like bookmarks) in the
637 Run before listing pushkeys (like bookmarks) in the
638 repository. Non-zero status will cause failure. The key namespace is
638 repository. Non-zero status will cause failure. The key namespace is
639 in ``$HG_NAMESPACE``.
639 in ``$HG_NAMESPACE``.
640
640
641 ``preoutgoing``
641 ``preoutgoing``
642 Run before collecting changes to send from the local repository to
642 Run before collecting changes to send from the local repository to
643 another. Non-zero status will cause failure. This lets you prevent
643 another. Non-zero status will cause failure. This lets you prevent
644 pull over HTTP or SSH. Also prevents against local pull, push
644 pull over HTTP or SSH. Also prevents against local pull, push
645 (outbound) or bundle commands, but not effective, since you can
645 (outbound) or bundle commands, but not effective, since you can
646 just copy files instead then. Source of operation is in
646 just copy files instead then. Source of operation is in
647 ``$HG_SOURCE``. If "serve", operation is happening on behalf of remote
647 ``$HG_SOURCE``. If "serve", operation is happening on behalf of remote
648 SSH or HTTP repository. If "push", "pull" or "bundle", operation
648 SSH or HTTP repository. If "push", "pull" or "bundle", operation
649 is happening on behalf of repository on same system.
649 is happening on behalf of repository on same system.
650
650
651 ``prepushkey``
651 ``prepushkey``
652 Run before a pushkey (like a bookmark) is added to the
652 Run before a pushkey (like a bookmark) is added to the
653 repository. Non-zero status will cause the key to be rejected. The
653 repository. Non-zero status will cause the key to be rejected. The
654 key namespace is in ``$HG_NAMESPACE``, the key is in ``$HG_KEY``,
654 key namespace is in ``$HG_NAMESPACE``, the key is in ``$HG_KEY``,
655 the old value (if any) is in ``$HG_OLD``, and the new value is in
655 the old value (if any) is in ``$HG_OLD``, and the new value is in
656 ``$HG_NEW``.
656 ``$HG_NEW``.
657
657
658 ``pretag``
658 ``pretag``
659 Run before creating a tag. Exit status 0 allows the tag to be
659 Run before creating a tag. Exit status 0 allows the tag to be
660 created. Non-zero status will cause the tag to fail. ID of
660 created. Non-zero status will cause the tag to fail. ID of
661 changeset to tag is in ``$HG_NODE``. Name of tag is in ``$HG_TAG``. Tag is
661 changeset to tag is in ``$HG_NODE``. Name of tag is in ``$HG_TAG``. Tag is
662 local if ``$HG_LOCAL=1``, in repository if ``$HG_LOCAL=0``.
662 local if ``$HG_LOCAL=1``, in repository if ``$HG_LOCAL=0``.
663
663
664 ``pretxnchangegroup``
664 ``pretxnchangegroup``
665 Run after a changegroup has been added via push, pull or unbundle,
665 Run after a changegroup has been added via push, pull or unbundle,
666 but before the transaction has been committed. Changegroup is
666 but before the transaction has been committed. Changegroup is
667 visible to hook program. This lets you validate incoming changes
667 visible to hook program. This lets you validate incoming changes
668 before accepting them. Passed the ID of the first new changeset in
668 before accepting them. Passed the ID of the first new changeset in
669 ``$HG_NODE``. Exit status 0 allows the transaction to commit. Non-zero
669 ``$HG_NODE``. Exit status 0 allows the transaction to commit. Non-zero
670 status will cause the transaction to be rolled back and the push,
670 status will cause the transaction to be rolled back and the push,
671 pull or unbundle will fail. URL that was source of changes is in
671 pull or unbundle will fail. URL that was source of changes is in
672 ``$HG_URL``.
672 ``$HG_URL``.
673
673
674 ``pretxncommit``
674 ``pretxncommit``
675 Run after a changeset has been created but the transaction not yet
675 Run after a changeset has been created but the transaction not yet
676 committed. Changeset is visible to hook program. This lets you
676 committed. Changeset is visible to hook program. This lets you
677 validate commit message and changes. Exit status 0 allows the
677 validate commit message and changes. Exit status 0 allows the
678 commit to proceed. Non-zero status will cause the transaction to
678 commit to proceed. Non-zero status will cause the transaction to
679 be rolled back. ID of changeset is in ``$HG_NODE``. Parent changeset
679 be rolled back. ID of changeset is in ``$HG_NODE``. Parent changeset
680 IDs are in ``$HG_PARENT1`` and ``$HG_PARENT2``.
680 IDs are in ``$HG_PARENT1`` and ``$HG_PARENT2``.
681
681
682 ``preupdate``
682 ``preupdate``
683 Run before updating the working directory. Exit status 0 allows
683 Run before updating the working directory. Exit status 0 allows
684 the update to proceed. Non-zero status will prevent the update.
684 the update to proceed. Non-zero status will prevent the update.
685 Changeset ID of first new parent is in ``$HG_PARENT1``. If merge, ID
685 Changeset ID of first new parent is in ``$HG_PARENT1``. If merge, ID
686 of second new parent is in ``$HG_PARENT2``.
686 of second new parent is in ``$HG_PARENT2``.
687
687
688 ``listkeys``
688 ``listkeys``
689 Run after listing pushkeys (like bookmarks) in the repository. The
689 Run after listing pushkeys (like bookmarks) in the repository. The
690 key namespace is in ``$HG_NAMESPACE``. ``$HG_VALUES`` is a
690 key namespace is in ``$HG_NAMESPACE``. ``$HG_VALUES`` is a
691 dictionary containing the keys and values.
691 dictionary containing the keys and values.
692
692
693 ``pushkey``
693 ``pushkey``
694 Run after a pushkey (like a bookmark) is added to the
694 Run after a pushkey (like a bookmark) is added to the
695 repository. The key namespace is in ``$HG_NAMESPACE``, the key is in
695 repository. The key namespace is in ``$HG_NAMESPACE``, the key is in
696 ``$HG_KEY``, the old value (if any) is in ``$HG_OLD``, and the new
696 ``$HG_KEY``, the old value (if any) is in ``$HG_OLD``, and the new
697 value is in ``$HG_NEW``.
697 value is in ``$HG_NEW``.
698
698
699 ``tag``
699 ``tag``
700 Run after a tag is created. ID of tagged changeset is in ``$HG_NODE``.
700 Run after a tag is created. ID of tagged changeset is in ``$HG_NODE``.
701 Name of tag is in ``$HG_TAG``. Tag is local if ``$HG_LOCAL=1``, in
701 Name of tag is in ``$HG_TAG``. Tag is local if ``$HG_LOCAL=1``, in
702 repository if ``$HG_LOCAL=0``.
702 repository if ``$HG_LOCAL=0``.
703
703
704 ``update``
704 ``update``
705 Run after updating the working directory. Changeset ID of first
705 Run after updating the working directory. Changeset ID of first
706 new parent is in ``$HG_PARENT1``. If merge, ID of second new parent is
706 new parent is in ``$HG_PARENT1``. If merge, ID of second new parent is
707 in ``$HG_PARENT2``. If the update succeeded, ``$HG_ERROR=0``. If the
707 in ``$HG_PARENT2``. If the update succeeded, ``$HG_ERROR=0``. If the
708 update failed (e.g. because conflicts not resolved), ``$HG_ERROR=1``.
708 update failed (e.g. because conflicts not resolved), ``$HG_ERROR=1``.
709
709
710 .. note:: It is generally better to use standard hooks rather than the
710 .. note:: It is generally better to use standard hooks rather than the
711 generic pre- and post- command hooks as they are guaranteed to be
711 generic pre- and post- command hooks as they are guaranteed to be
712 called in the appropriate contexts for influencing transactions.
712 called in the appropriate contexts for influencing transactions.
713 Also, hooks like "commit" will be called in all contexts that
713 Also, hooks like "commit" will be called in all contexts that
714 generate a commit (e.g. tag) and not just the commit command.
714 generate a commit (e.g. tag) and not just the commit command.
715
715
716 .. note:: Environment variables with empty values may not be passed to
716 .. note:: Environment variables with empty values may not be passed to
717 hooks on platforms such as Windows. As an example, ``$HG_PARENT2``
717 hooks on platforms such as Windows. As an example, ``$HG_PARENT2``
718 will have an empty value under Unix-like platforms for non-merge
718 will have an empty value under Unix-like platforms for non-merge
719 changesets, while it will not be available at all under Windows.
719 changesets, while it will not be available at all under Windows.
720
720
721 The syntax for Python hooks is as follows::
721 The syntax for Python hooks is as follows::
722
722
723 hookname = python:modulename.submodule.callable
723 hookname = python:modulename.submodule.callable
724 hookname = python:/path/to/python/module.py:callable
724 hookname = python:/path/to/python/module.py:callable
725
725
726 Python hooks are run within the Mercurial process. Each hook is
726 Python hooks are run within the Mercurial process. Each hook is
727 called with at least three keyword arguments: a ui object (keyword
727 called with at least three keyword arguments: a ui object (keyword
728 ``ui``), a repository object (keyword ``repo``), and a ``hooktype``
728 ``ui``), a repository object (keyword ``repo``), and a ``hooktype``
729 keyword that tells what kind of hook is used. Arguments listed as
729 keyword that tells what kind of hook is used. Arguments listed as
730 environment variables above are passed as keyword arguments, with no
730 environment variables above are passed as keyword arguments, with no
731 ``HG_`` prefix, and names in lower case.
731 ``HG_`` prefix, and names in lower case.
732
732
733 If a Python hook returns a "true" value or raises an exception, this
733 If a Python hook returns a "true" value or raises an exception, this
734 is treated as a failure.
734 is treated as a failure.
735
735
736
736
737 ``hostfingerprints``
737 ``hostfingerprints``
738 """"""""""""""""""""
738 """"""""""""""""""""
739
739
740 Fingerprints of the certificates of known HTTPS servers.
740 Fingerprints of the certificates of known HTTPS servers.
741 A HTTPS connection to a server with a fingerprint configured here will
741 A HTTPS connection to a server with a fingerprint configured here will
742 only succeed if the servers certificate matches the fingerprint.
742 only succeed if the servers certificate matches the fingerprint.
743 This is very similar to how ssh known hosts works.
743 This is very similar to how ssh known hosts works.
744 The fingerprint is the SHA-1 hash value of the DER encoded certificate.
744 The fingerprint is the SHA-1 hash value of the DER encoded certificate.
745 The CA chain and web.cacerts is not used for servers with a fingerprint.
745 The CA chain and web.cacerts is not used for servers with a fingerprint.
746
746
747 For example::
747 For example::
748
748
749 [hostfingerprints]
749 [hostfingerprints]
750 hg.intevation.org = 38:76:52:7c:87:26:9a:8f:4a:f8:d3:de:08:45:3b:ea:d6:4b:ee:cc
750 hg.intevation.org = 38:76:52:7c:87:26:9a:8f:4a:f8:d3:de:08:45:3b:ea:d6:4b:ee:cc
751
751
752 This feature is only supported when using Python 2.6 or later.
752 This feature is only supported when using Python 2.6 or later.
753
753
754
754
755 ``http_proxy``
755 ``http_proxy``
756 """"""""""""""
756 """"""""""""""
757
757
758 Used to access web-based Mercurial repositories through a HTTP
758 Used to access web-based Mercurial repositories through a HTTP
759 proxy.
759 proxy.
760
760
761 ``host``
761 ``host``
762 Host name and (optional) port of the proxy server, for example
762 Host name and (optional) port of the proxy server, for example
763 "myproxy:8000".
763 "myproxy:8000".
764
764
765 ``no``
765 ``no``
766 Optional. Comma-separated list of host names that should bypass
766 Optional. Comma-separated list of host names that should bypass
767 the proxy.
767 the proxy.
768
768
769 ``passwd``
769 ``passwd``
770 Optional. Password to authenticate with at the proxy server.
770 Optional. Password to authenticate with at the proxy server.
771
771
772 ``user``
772 ``user``
773 Optional. User name to authenticate with at the proxy server.
773 Optional. User name to authenticate with at the proxy server.
774
774
775 ``always``
775 ``always``
776 Optional. Always use the proxy, even for localhost and any entries
776 Optional. Always use the proxy, even for localhost and any entries
777 in ``http_proxy.no``. True or False. Default: False.
777 in ``http_proxy.no``. True or False. Default: False.
778
778
779 ``merge-patterns``
779 ``merge-patterns``
780 """"""""""""""""""
780 """"""""""""""""""
781
781
782 This section specifies merge tools to associate with particular file
782 This section specifies merge tools to associate with particular file
783 patterns. Tools matched here will take precedence over the default
783 patterns. Tools matched here will take precedence over the default
784 merge tool. Patterns are globs by default, rooted at the repository
784 merge tool. Patterns are globs by default, rooted at the repository
785 root.
785 root.
786
786
787 Example::
787 Example::
788
788
789 [merge-patterns]
789 [merge-patterns]
790 **.c = kdiff3
790 **.c = kdiff3
791 **.jpg = myimgmerge
791 **.jpg = myimgmerge
792
792
793 ``merge-tools``
793 ``merge-tools``
794 """""""""""""""
794 """""""""""""""
795
795
796 This section configures external merge tools to use for file-level
796 This section configures external merge tools to use for file-level
797 merges.
797 merges.
798
798
799 Example ``~/.hgrc``::
799 Example ``~/.hgrc``::
800
800
801 [merge-tools]
801 [merge-tools]
802 # Override stock tool location
802 # Override stock tool location
803 kdiff3.executable = ~/bin/kdiff3
803 kdiff3.executable = ~/bin/kdiff3
804 # Specify command line
804 # Specify command line
805 kdiff3.args = $base $local $other -o $output
805 kdiff3.args = $base $local $other -o $output
806 # Give higher priority
806 # Give higher priority
807 kdiff3.priority = 1
807 kdiff3.priority = 1
808
808
809 # Define new tool
809 # Define new tool
810 myHtmlTool.args = -m $local $other $base $output
810 myHtmlTool.args = -m $local $other $base $output
811 myHtmlTool.regkey = Software\FooSoftware\HtmlMerge
811 myHtmlTool.regkey = Software\FooSoftware\HtmlMerge
812 myHtmlTool.priority = 1
812 myHtmlTool.priority = 1
813
813
814 Supported arguments:
814 Supported arguments:
815
815
816 ``priority``
816 ``priority``
817 The priority in which to evaluate this tool.
817 The priority in which to evaluate this tool.
818 Default: 0.
818 Default: 0.
819
819
820 ``executable``
820 ``executable``
821 Either just the name of the executable or its pathname. On Windows,
821 Either just the name of the executable or its pathname. On Windows,
822 the path can use environment variables with ${ProgramFiles} syntax.
822 the path can use environment variables with ${ProgramFiles} syntax.
823 Default: the tool name.
823 Default: the tool name.
824
824
825 ``args``
825 ``args``
826 The arguments to pass to the tool executable. You can refer to the
826 The arguments to pass to the tool executable. You can refer to the
827 files being merged as well as the output file through these
827 files being merged as well as the output file through these
828 variables: ``$base``, ``$local``, ``$other``, ``$output``.
828 variables: ``$base``, ``$local``, ``$other``, ``$output``.
829 Default: ``$local $base $other``
829 Default: ``$local $base $other``
830
830
831 ``premerge``
831 ``premerge``
832 Attempt to run internal non-interactive 3-way merge tool before
832 Attempt to run internal non-interactive 3-way merge tool before
833 launching external tool. Options are ``true``, ``false``, or ``keep``
833 launching external tool. Options are ``true``, ``false``, or ``keep``
834 to leave markers in the file if the premerge fails.
834 to leave markers in the file if the premerge fails.
835 Default: True
835 Default: True
836
836
837 ``binary``
837 ``binary``
838 This tool can merge binary files. Defaults to False, unless tool
838 This tool can merge binary files. Defaults to False, unless tool
839 was selected by file pattern match.
839 was selected by file pattern match.
840
840
841 ``symlink``
841 ``symlink``
842 This tool can merge symlinks. Defaults to False, even if tool was
842 This tool can merge symlinks. Defaults to False, even if tool was
843 selected by file pattern match.
843 selected by file pattern match.
844
844
845 ``check``
845 ``check``
846 A list of merge success-checking options:
846 A list of merge success-checking options:
847
847
848 ``changed``
848 ``changed``
849 Ask whether merge was successful when the merged file shows no changes.
849 Ask whether merge was successful when the merged file shows no changes.
850 ``conflicts``
850 ``conflicts``
851 Check whether there are conflicts even though the tool reported success.
851 Check whether there are conflicts even though the tool reported success.
852 ``prompt``
852 ``prompt``
853 Always prompt for merge success, regardless of success reported by tool.
853 Always prompt for merge success, regardless of success reported by tool.
854
854
855 ``checkchanged``
855 ``checkchanged``
856 True is equivalent to ``check = changed``.
856 True is equivalent to ``check = changed``.
857 Default: False
857 Default: False
858
858
859 ``checkconflicts``
859 ``checkconflicts``
860 True is equivalent to ``check = conflicts``.
860 True is equivalent to ``check = conflicts``.
861 Default: False
861 Default: False
862
862
863 ``fixeol``
863 ``fixeol``
864 Attempt to fix up EOL changes caused by the merge tool.
864 Attempt to fix up EOL changes caused by the merge tool.
865 Default: False
865 Default: False
866
866
867 ``gui``
867 ``gui``
868 This tool requires a graphical interface to run. Default: False
868 This tool requires a graphical interface to run. Default: False
869
869
870 ``regkey``
870 ``regkey``
871 Windows registry key which describes install location of this
871 Windows registry key which describes install location of this
872 tool. Mercurial will search for this key first under
872 tool. Mercurial will search for this key first under
873 ``HKEY_CURRENT_USER`` and then under ``HKEY_LOCAL_MACHINE``.
873 ``HKEY_CURRENT_USER`` and then under ``HKEY_LOCAL_MACHINE``.
874 Default: None
874 Default: None
875
875
876 ``regkeyalt``
876 ``regkeyalt``
877 An alternate Windows registry key to try if the first key is not
877 An alternate Windows registry key to try if the first key is not
878 found. The alternate key uses the same ``regname`` and ``regappend``
878 found. The alternate key uses the same ``regname`` and ``regappend``
879 semantics of the primary key. The most common use for this key
879 semantics of the primary key. The most common use for this key
880 is to search for 32bit applications on 64bit operating systems.
880 is to search for 32bit applications on 64bit operating systems.
881 Default: None
881 Default: None
882
882
883 ``regname``
883 ``regname``
884 Name of value to read from specified registry key. Defaults to the
884 Name of value to read from specified registry key. Defaults to the
885 unnamed (default) value.
885 unnamed (default) value.
886
886
887 ``regappend``
887 ``regappend``
888 String to append to the value read from the registry, typically
888 String to append to the value read from the registry, typically
889 the executable name of the tool.
889 the executable name of the tool.
890 Default: None
890 Default: None
891
891
892
892
893 ``patch``
893 ``patch``
894 """""""""
894 """""""""
895
895
896 Settings used when applying patches, for instance through the 'import'
896 Settings used when applying patches, for instance through the 'import'
897 command or with Mercurial Queues extension.
897 command or with Mercurial Queues extension.
898
898
899 ``eol``
899 ``eol``
900 When set to 'strict' patch content and patched files end of lines
900 When set to 'strict' patch content and patched files end of lines
901 are preserved. When set to ``lf`` or ``crlf``, both files end of
901 are preserved. When set to ``lf`` or ``crlf``, both files end of
902 lines are ignored when patching and the result line endings are
902 lines are ignored when patching and the result line endings are
903 normalized to either LF (Unix) or CRLF (Windows). When set to
903 normalized to either LF (Unix) or CRLF (Windows). When set to
904 ``auto``, end of lines are again ignored while patching but line
904 ``auto``, end of lines are again ignored while patching but line
905 endings in patched files are normalized to their original setting
905 endings in patched files are normalized to their original setting
906 on a per-file basis. If target file does not exist or has no end
906 on a per-file basis. If target file does not exist or has no end
907 of line, patch line endings are preserved.
907 of line, patch line endings are preserved.
908 Default: strict.
908 Default: strict.
909
909
910
910
911 ``paths``
911 ``paths``
912 """""""""
912 """""""""
913
913
914 Assigns symbolic names to repositories. The left side is the
914 Assigns symbolic names to repositories. The left side is the
915 symbolic name, and the right gives the directory or URL that is the
915 symbolic name, and the right gives the directory or URL that is the
916 location of the repository. Default paths can be declared by setting
916 location of the repository. Default paths can be declared by setting
917 the following entries.
917 the following entries.
918
918
919 ``default``
919 ``default``
920 Directory or URL to use when pulling if no source is specified.
920 Directory or URL to use when pulling if no source is specified.
921 Default is set to repository from which the current repository was
921 Default is set to repository from which the current repository was
922 cloned.
922 cloned.
923
923
924 ``default-push``
924 ``default-push``
925 Optional. Directory or URL to use when pushing if no destination
925 Optional. Directory or URL to use when pushing if no destination
926 is specified.
926 is specified.
927
927
928 ``phases``
928 ``phases``
929 """"""""""
929 """"""""""
930
930
931 Specifies default handling of phases. See :hg:`help phases` for more
931 Specifies default handling of phases. See :hg:`help phases` for more
932 information about working with phases.
932 information about working with phases.
933
933
934 ``publish``
934 ``publish``
935 Controls draft phase behavior when working as a server. When true,
935 Controls draft phase behavior when working as a server. When true,
936 pushed changesets are set to public in both client and server and
936 pushed changesets are set to public in both client and server and
937 pulled or cloned changesets are set to public in the client.
937 pulled or cloned changesets are set to public in the client.
938 Default: True
938 Default: True
939
939
940 ``new-commit``
940 ``new-commit``
941 Phase of newly-created commits.
941 Phase of newly-created commits.
942 Default: draft
942 Default: draft
943
943
944 ``profiling``
944 ``profiling``
945 """""""""""""
945 """""""""""""
946
946
947 Specifies profiling type, format, and file output. Two profilers are
947 Specifies profiling type, format, and file output. Two profilers are
948 supported: an instrumenting profiler (named ``ls``), and a sampling
948 supported: an instrumenting profiler (named ``ls``), and a sampling
949 profiler (named ``stat``).
949 profiler (named ``stat``).
950
950
951 In this section description, 'profiling data' stands for the raw data
951 In this section description, 'profiling data' stands for the raw data
952 collected during profiling, while 'profiling report' stands for a
952 collected during profiling, while 'profiling report' stands for a
953 statistical text report generated from the profiling data. The
953 statistical text report generated from the profiling data. The
954 profiling is done using lsprof.
954 profiling is done using lsprof.
955
955
956 ``type``
956 ``type``
957 The type of profiler to use.
957 The type of profiler to use.
958 Default: ls.
958 Default: ls.
959
959
960 ``ls``
960 ``ls``
961 Use Python's built-in instrumenting profiler. This profiler
961 Use Python's built-in instrumenting profiler. This profiler
962 works on all platforms, but each line number it reports is the
962 works on all platforms, but each line number it reports is the
963 first line of a function. This restriction makes it difficult to
963 first line of a function. This restriction makes it difficult to
964 identify the expensive parts of a non-trivial function.
964 identify the expensive parts of a non-trivial function.
965 ``stat``
965 ``stat``
966 Use a third-party statistical profiler, statprof. This profiler
966 Use a third-party statistical profiler, statprof. This profiler
967 currently runs only on Unix systems, and is most useful for
967 currently runs only on Unix systems, and is most useful for
968 profiling commands that run for longer than about 0.1 seconds.
968 profiling commands that run for longer than about 0.1 seconds.
969
969
970 ``format``
970 ``format``
971 Profiling format. Specific to the ``ls`` instrumenting profiler.
971 Profiling format. Specific to the ``ls`` instrumenting profiler.
972 Default: text.
972 Default: text.
973
973
974 ``text``
974 ``text``
975 Generate a profiling report. When saving to a file, it should be
975 Generate a profiling report. When saving to a file, it should be
976 noted that only the report is saved, and the profiling data is
976 noted that only the report is saved, and the profiling data is
977 not kept.
977 not kept.
978 ``kcachegrind``
978 ``kcachegrind``
979 Format profiling data for kcachegrind use: when saving to a
979 Format profiling data for kcachegrind use: when saving to a
980 file, the generated file can directly be loaded into
980 file, the generated file can directly be loaded into
981 kcachegrind.
981 kcachegrind.
982
982
983 ``frequency``
983 ``frequency``
984 Sampling frequency. Specific to the ``stat`` sampling profiler.
984 Sampling frequency. Specific to the ``stat`` sampling profiler.
985 Default: 1000.
985 Default: 1000.
986
986
987 ``output``
987 ``output``
988 File path where profiling data or report should be saved. If the
988 File path where profiling data or report should be saved. If the
989 file exists, it is replaced. Default: None, data is printed on
989 file exists, it is replaced. Default: None, data is printed on
990 stderr
990 stderr
991
991
992 ``revsetalias``
992 ``revsetalias``
993 """""""""""""""
993 """""""""""""""
994
994
995 Alias definitions for revsets. See :hg:`help revsets` for details.
995 Alias definitions for revsets. See :hg:`help revsets` for details.
996
996
997 ``server``
997 ``server``
998 """"""""""
998 """"""""""
999
999
1000 Controls generic server settings.
1000 Controls generic server settings.
1001
1001
1002 ``uncompressed``
1002 ``uncompressed``
1003 Whether to allow clients to clone a repository using the
1003 Whether to allow clients to clone a repository using the
1004 uncompressed streaming protocol. This transfers about 40% more
1004 uncompressed streaming protocol. This transfers about 40% more
1005 data than a regular clone, but uses less memory and CPU on both
1005 data than a regular clone, but uses less memory and CPU on both
1006 server and client. Over a LAN (100 Mbps or better) or a very fast
1006 server and client. Over a LAN (100 Mbps or better) or a very fast
1007 WAN, an uncompressed streaming clone is a lot faster (~10x) than a
1007 WAN, an uncompressed streaming clone is a lot faster (~10x) than a
1008 regular clone. Over most WAN connections (anything slower than
1008 regular clone. Over most WAN connections (anything slower than
1009 about 6 Mbps), uncompressed streaming is slower, because of the
1009 about 6 Mbps), uncompressed streaming is slower, because of the
1010 extra data transfer overhead. This mode will also temporarily hold
1010 extra data transfer overhead. This mode will also temporarily hold
1011 the write lock while determining what data to transfer.
1011 the write lock while determining what data to transfer.
1012 Default is True.
1012 Default is True.
1013
1013
1014 ``preferuncompressed``
1014 ``preferuncompressed``
1015 When set, clients will try to use the uncompressed streaming
1015 When set, clients will try to use the uncompressed streaming
1016 protocol. Default is False.
1016 protocol. Default is False.
1017
1017
1018 ``validate``
1018 ``validate``
1019 Whether to validate the completeness of pushed changesets by
1019 Whether to validate the completeness of pushed changesets by
1020 checking that all new file revisions specified in manifests are
1020 checking that all new file revisions specified in manifests are
1021 present. Default is False.
1021 present. Default is False.
1022
1022
1023 ``smtp``
1023 ``smtp``
1024 """"""""
1024 """"""""
1025
1025
1026 Configuration for extensions that need to send email messages.
1026 Configuration for extensions that need to send email messages.
1027
1027
1028 ``host``
1028 ``host``
1029 Host name of mail server, e.g. "mail.example.com".
1029 Host name of mail server, e.g. "mail.example.com".
1030
1030
1031 ``port``
1031 ``port``
1032 Optional. Port to connect to on mail server. Default: 25.
1032 Optional. Port to connect to on mail server. Default: 25.
1033
1033
1034 ``tls``
1034 ``tls``
1035 Optional. Method to enable TLS when connecting to mail server: starttls,
1035 Optional. Method to enable TLS when connecting to mail server: starttls,
1036 smtps or none. Default: none.
1036 smtps or none. Default: none.
1037
1037
1038 ``username``
1038 ``username``
1039 Optional. User name for authenticating with the SMTP server.
1039 Optional. User name for authenticating with the SMTP server.
1040 Default: none.
1040 Default: none.
1041
1041
1042 ``password``
1042 ``password``
1043 Optional. Password for authenticating with the SMTP server. If not
1043 Optional. Password for authenticating with the SMTP server. If not
1044 specified, interactive sessions will prompt the user for a
1044 specified, interactive sessions will prompt the user for a
1045 password; non-interactive sessions will fail. Default: none.
1045 password; non-interactive sessions will fail. Default: none.
1046
1046
1047 ``local_hostname``
1047 ``local_hostname``
1048 Optional. It's the hostname that the sender can use to identify
1048 Optional. It's the hostname that the sender can use to identify
1049 itself to the MTA.
1049 itself to the MTA.
1050
1050
1051
1051
1052 ``subpaths``
1052 ``subpaths``
1053 """"""""""""
1053 """"""""""""
1054
1054
1055 Defines subrepositories source locations rewriting rules of the form::
1055 Subrepository source URLs can go stale if a remote server changes name
1056 or becomes temporarily unavailable. This section lets you define
1057 rewrite rules of the form::
1056
1058
1057 <pattern> = <replacement>
1059 <pattern> = <replacement>
1058
1060
1059 Where ``pattern`` is a regular expression matching the source and
1061 where ``pattern`` is a regular expression matching a subrepository
1060 ``replacement`` is the replacement string used to rewrite it. Groups
1062 source URL and ``replacement`` is the replacement string used to
1061 can be matched in ``pattern`` and referenced in ``replacements``. For
1063 rewrite it. Groups can be matched in ``pattern`` and referenced in
1062 instance::
1064 ``replacements``. For instance::
1063
1065
1064 http://server/(.*)-hg/ = http://hg.server/\1/
1066 http://server/(.*)-hg/ = http://hg.server/\1/
1065
1067
1066 rewrites ``http://server/foo-hg/`` into ``http://hg.server/foo/``.
1068 rewrites ``http://server/foo-hg/`` into ``http://hg.server/foo/``.
1067
1069
1068 All patterns are applied in definition order.
1070 Relative subrepository paths are first made absolute, and the the
1071 rewrite rules are then applied on the full (absolute) path. The rules
1072 are applied in definition order.
1069
1073
1070 ``trusted``
1074 ``trusted``
1071 """""""""""
1075 """""""""""
1072
1076
1073 Mercurial will not use the settings in the
1077 Mercurial will not use the settings in the
1074 ``.hg/hgrc`` file from a repository if it doesn't belong to a trusted
1078 ``.hg/hgrc`` file from a repository if it doesn't belong to a trusted
1075 user or to a trusted group, as various hgrc features allow arbitrary
1079 user or to a trusted group, as various hgrc features allow arbitrary
1076 commands to be run. This issue is often encountered when configuring
1080 commands to be run. This issue is often encountered when configuring
1077 hooks or extensions for shared repositories or servers. However,
1081 hooks or extensions for shared repositories or servers. However,
1078 the web interface will use some safe settings from the ``[web]``
1082 the web interface will use some safe settings from the ``[web]``
1079 section.
1083 section.
1080
1084
1081 This section specifies what users and groups are trusted. The
1085 This section specifies what users and groups are trusted. The
1082 current user is always trusted. To trust everybody, list a user or a
1086 current user is always trusted. To trust everybody, list a user or a
1083 group with name ``*``. These settings must be placed in an
1087 group with name ``*``. These settings must be placed in an
1084 *already-trusted file* to take effect, such as ``$HOME/.hgrc`` of the
1088 *already-trusted file* to take effect, such as ``$HOME/.hgrc`` of the
1085 user or service running Mercurial.
1089 user or service running Mercurial.
1086
1090
1087 ``users``
1091 ``users``
1088 Comma-separated list of trusted users.
1092 Comma-separated list of trusted users.
1089
1093
1090 ``groups``
1094 ``groups``
1091 Comma-separated list of trusted groups.
1095 Comma-separated list of trusted groups.
1092
1096
1093
1097
1094 ``ui``
1098 ``ui``
1095 """"""
1099 """"""
1096
1100
1097 User interface controls.
1101 User interface controls.
1098
1102
1099 ``archivemeta``
1103 ``archivemeta``
1100 Whether to include the .hg_archival.txt file containing meta data
1104 Whether to include the .hg_archival.txt file containing meta data
1101 (hashes for the repository base and for tip) in archives created
1105 (hashes for the repository base and for tip) in archives created
1102 by the :hg:`archive` command or downloaded via hgweb.
1106 by the :hg:`archive` command or downloaded via hgweb.
1103 Default is True.
1107 Default is True.
1104
1108
1105 ``askusername``
1109 ``askusername``
1106 Whether to prompt for a username when committing. If True, and
1110 Whether to prompt for a username when committing. If True, and
1107 neither ``$HGUSER`` nor ``$EMAIL`` has been specified, then the user will
1111 neither ``$HGUSER`` nor ``$EMAIL`` has been specified, then the user will
1108 be prompted to enter a username. If no username is entered, the
1112 be prompted to enter a username. If no username is entered, the
1109 default ``USER@HOST`` is used instead.
1113 default ``USER@HOST`` is used instead.
1110 Default is False.
1114 Default is False.
1111
1115
1112 ``commitsubrepos``
1116 ``commitsubrepos``
1113 Whether to commit modified subrepositories when committing the
1117 Whether to commit modified subrepositories when committing the
1114 parent repository. If False and one subrepository has uncommitted
1118 parent repository. If False and one subrepository has uncommitted
1115 changes, abort the commit.
1119 changes, abort the commit.
1116 Default is False.
1120 Default is False.
1117
1121
1118 ``debug``
1122 ``debug``
1119 Print debugging information. True or False. Default is False.
1123 Print debugging information. True or False. Default is False.
1120
1124
1121 ``editor``
1125 ``editor``
1122 The editor to use during a commit. Default is ``$EDITOR`` or ``vi``.
1126 The editor to use during a commit. Default is ``$EDITOR`` or ``vi``.
1123
1127
1124 ``fallbackencoding``
1128 ``fallbackencoding``
1125 Encoding to try if it's not possible to decode the changelog using
1129 Encoding to try if it's not possible to decode the changelog using
1126 UTF-8. Default is ISO-8859-1.
1130 UTF-8. Default is ISO-8859-1.
1127
1131
1128 ``ignore``
1132 ``ignore``
1129 A file to read per-user ignore patterns from. This file should be
1133 A file to read per-user ignore patterns from. This file should be
1130 in the same format as a repository-wide .hgignore file. This
1134 in the same format as a repository-wide .hgignore file. This
1131 option supports hook syntax, so if you want to specify multiple
1135 option supports hook syntax, so if you want to specify multiple
1132 ignore files, you can do so by setting something like
1136 ignore files, you can do so by setting something like
1133 ``ignore.other = ~/.hgignore2``. For details of the ignore file
1137 ``ignore.other = ~/.hgignore2``. For details of the ignore file
1134 format, see the ``hgignore(5)`` man page.
1138 format, see the ``hgignore(5)`` man page.
1135
1139
1136 ``interactive``
1140 ``interactive``
1137 Allow to prompt the user. True or False. Default is True.
1141 Allow to prompt the user. True or False. Default is True.
1138
1142
1139 ``logtemplate``
1143 ``logtemplate``
1140 Template string for commands that print changesets.
1144 Template string for commands that print changesets.
1141
1145
1142 ``merge``
1146 ``merge``
1143 The conflict resolution program to use during a manual merge.
1147 The conflict resolution program to use during a manual merge.
1144 For more information on merge tools see :hg:`help merge-tools`.
1148 For more information on merge tools see :hg:`help merge-tools`.
1145 For configuring merge tools see the ``[merge-tools]`` section.
1149 For configuring merge tools see the ``[merge-tools]`` section.
1146
1150
1147 ``portablefilenames``
1151 ``portablefilenames``
1148 Check for portable filenames. Can be ``warn``, ``ignore`` or ``abort``.
1152 Check for portable filenames. Can be ``warn``, ``ignore`` or ``abort``.
1149 Default is ``warn``.
1153 Default is ``warn``.
1150 If set to ``warn`` (or ``true``), a warning message is printed on POSIX
1154 If set to ``warn`` (or ``true``), a warning message is printed on POSIX
1151 platforms, if a file with a non-portable filename is added (e.g. a file
1155 platforms, if a file with a non-portable filename is added (e.g. a file
1152 with a name that can't be created on Windows because it contains reserved
1156 with a name that can't be created on Windows because it contains reserved
1153 parts like ``AUX``, reserved characters like ``:``, or would cause a case
1157 parts like ``AUX``, reserved characters like ``:``, or would cause a case
1154 collision with an existing file).
1158 collision with an existing file).
1155 If set to ``ignore`` (or ``false``), no warning is printed.
1159 If set to ``ignore`` (or ``false``), no warning is printed.
1156 If set to ``abort``, the command is aborted.
1160 If set to ``abort``, the command is aborted.
1157 On Windows, this configuration option is ignored and the command aborted.
1161 On Windows, this configuration option is ignored and the command aborted.
1158
1162
1159 ``quiet``
1163 ``quiet``
1160 Reduce the amount of output printed. True or False. Default is False.
1164 Reduce the amount of output printed. True or False. Default is False.
1161
1165
1162 ``remotecmd``
1166 ``remotecmd``
1163 remote command to use for clone/push/pull operations. Default is ``hg``.
1167 remote command to use for clone/push/pull operations. Default is ``hg``.
1164
1168
1165 ``reportoldssl``
1169 ``reportoldssl``
1166 Warn if an SSL certificate is unable to be due to using Python
1170 Warn if an SSL certificate is unable to be due to using Python
1167 2.5 or earlier. True or False. Default is True.
1171 2.5 or earlier. True or False. Default is True.
1168
1172
1169 ``report_untrusted``
1173 ``report_untrusted``
1170 Warn if a ``.hg/hgrc`` file is ignored due to not being owned by a
1174 Warn if a ``.hg/hgrc`` file is ignored due to not being owned by a
1171 trusted user or group. True or False. Default is True.
1175 trusted user or group. True or False. Default is True.
1172
1176
1173 ``slash``
1177 ``slash``
1174 Display paths using a slash (``/``) as the path separator. This
1178 Display paths using a slash (``/``) as the path separator. This
1175 only makes a difference on systems where the default path
1179 only makes a difference on systems where the default path
1176 separator is not the slash character (e.g. Windows uses the
1180 separator is not the slash character (e.g. Windows uses the
1177 backslash character (``\``)).
1181 backslash character (``\``)).
1178 Default is False.
1182 Default is False.
1179
1183
1180 ``ssh``
1184 ``ssh``
1181 command to use for SSH connections. Default is ``ssh``.
1185 command to use for SSH connections. Default is ``ssh``.
1182
1186
1183 ``strict``
1187 ``strict``
1184 Require exact command names, instead of allowing unambiguous
1188 Require exact command names, instead of allowing unambiguous
1185 abbreviations. True or False. Default is False.
1189 abbreviations. True or False. Default is False.
1186
1190
1187 ``style``
1191 ``style``
1188 Name of style to use for command output.
1192 Name of style to use for command output.
1189
1193
1190 ``timeout``
1194 ``timeout``
1191 The timeout used when a lock is held (in seconds), a negative value
1195 The timeout used when a lock is held (in seconds), a negative value
1192 means no timeout. Default is 600.
1196 means no timeout. Default is 600.
1193
1197
1194 ``traceback``
1198 ``traceback``
1195 Mercurial always prints a traceback when an unknown exception
1199 Mercurial always prints a traceback when an unknown exception
1196 occurs. Setting this to True will make Mercurial print a traceback
1200 occurs. Setting this to True will make Mercurial print a traceback
1197 on all exceptions, even those recognized by Mercurial (such as
1201 on all exceptions, even those recognized by Mercurial (such as
1198 IOError or MemoryError). Default is False.
1202 IOError or MemoryError). Default is False.
1199
1203
1200 ``username``
1204 ``username``
1201 The committer of a changeset created when running "commit".
1205 The committer of a changeset created when running "commit".
1202 Typically a person's name and email address, e.g. ``Fred Widget
1206 Typically a person's name and email address, e.g. ``Fred Widget
1203 <fred@example.com>``. Default is ``$EMAIL`` or ``username@hostname``. If
1207 <fred@example.com>``. Default is ``$EMAIL`` or ``username@hostname``. If
1204 the username in hgrc is empty, it has to be specified manually or
1208 the username in hgrc is empty, it has to be specified manually or
1205 in a different hgrc file (e.g. ``$HOME/.hgrc``, if the admin set
1209 in a different hgrc file (e.g. ``$HOME/.hgrc``, if the admin set
1206 ``username =`` in the system hgrc). Environment variables in the
1210 ``username =`` in the system hgrc). Environment variables in the
1207 username are expanded.
1211 username are expanded.
1208
1212
1209 ``verbose``
1213 ``verbose``
1210 Increase the amount of output printed. True or False. Default is False.
1214 Increase the amount of output printed. True or False. Default is False.
1211
1215
1212
1216
1213 ``web``
1217 ``web``
1214 """""""
1218 """""""
1215
1219
1216 Web interface configuration. The settings in this section apply to
1220 Web interface configuration. The settings in this section apply to
1217 both the builtin webserver (started by :hg:`serve`) and the script you
1221 both the builtin webserver (started by :hg:`serve`) and the script you
1218 run through a webserver (``hgweb.cgi`` and the derivatives for FastCGI
1222 run through a webserver (``hgweb.cgi`` and the derivatives for FastCGI
1219 and WSGI).
1223 and WSGI).
1220
1224
1221 The Mercurial webserver does no authentication (it does not prompt for
1225 The Mercurial webserver does no authentication (it does not prompt for
1222 usernames and passwords to validate *who* users are), but it does do
1226 usernames and passwords to validate *who* users are), but it does do
1223 authorization (it grants or denies access for *authenticated users*
1227 authorization (it grants or denies access for *authenticated users*
1224 based on settings in this section). You must either configure your
1228 based on settings in this section). You must either configure your
1225 webserver to do authentication for you, or disable the authorization
1229 webserver to do authentication for you, or disable the authorization
1226 checks.
1230 checks.
1227
1231
1228 For a quick setup in a trusted environment, e.g., a private LAN, where
1232 For a quick setup in a trusted environment, e.g., a private LAN, where
1229 you want it to accept pushes from anybody, you can use the following
1233 you want it to accept pushes from anybody, you can use the following
1230 command line::
1234 command line::
1231
1235
1232 $ hg --config web.allow_push=* --config web.push_ssl=False serve
1236 $ hg --config web.allow_push=* --config web.push_ssl=False serve
1233
1237
1234 Note that this will allow anybody to push anything to the server and
1238 Note that this will allow anybody to push anything to the server and
1235 that this should not be used for public servers.
1239 that this should not be used for public servers.
1236
1240
1237 The full set of options is:
1241 The full set of options is:
1238
1242
1239 ``accesslog``
1243 ``accesslog``
1240 Where to output the access log. Default is stdout.
1244 Where to output the access log. Default is stdout.
1241
1245
1242 ``address``
1246 ``address``
1243 Interface address to bind to. Default is all.
1247 Interface address to bind to. Default is all.
1244
1248
1245 ``allow_archive``
1249 ``allow_archive``
1246 List of archive format (bz2, gz, zip) allowed for downloading.
1250 List of archive format (bz2, gz, zip) allowed for downloading.
1247 Default is empty.
1251 Default is empty.
1248
1252
1249 ``allowbz2``
1253 ``allowbz2``
1250 (DEPRECATED) Whether to allow .tar.bz2 downloading of repository
1254 (DEPRECATED) Whether to allow .tar.bz2 downloading of repository
1251 revisions.
1255 revisions.
1252 Default is False.
1256 Default is False.
1253
1257
1254 ``allowgz``
1258 ``allowgz``
1255 (DEPRECATED) Whether to allow .tar.gz downloading of repository
1259 (DEPRECATED) Whether to allow .tar.gz downloading of repository
1256 revisions.
1260 revisions.
1257 Default is False.
1261 Default is False.
1258
1262
1259 ``allowpull``
1263 ``allowpull``
1260 Whether to allow pulling from the repository. Default is True.
1264 Whether to allow pulling from the repository. Default is True.
1261
1265
1262 ``allow_push``
1266 ``allow_push``
1263 Whether to allow pushing to the repository. If empty or not set,
1267 Whether to allow pushing to the repository. If empty or not set,
1264 push is not allowed. If the special value ``*``, any remote user can
1268 push is not allowed. If the special value ``*``, any remote user can
1265 push, including unauthenticated users. Otherwise, the remote user
1269 push, including unauthenticated users. Otherwise, the remote user
1266 must have been authenticated, and the authenticated user name must
1270 must have been authenticated, and the authenticated user name must
1267 be present in this list. The contents of the allow_push list are
1271 be present in this list. The contents of the allow_push list are
1268 examined after the deny_push list.
1272 examined after the deny_push list.
1269
1273
1270 ``guessmime``
1274 ``guessmime``
1271 Control MIME types for raw download of file content.
1275 Control MIME types for raw download of file content.
1272 Set to True to let hgweb guess the content type from the file
1276 Set to True to let hgweb guess the content type from the file
1273 extension. This will serve HTML files as ``text/html`` and might
1277 extension. This will serve HTML files as ``text/html`` and might
1274 allow cross-site scripting attacks when serving untrusted
1278 allow cross-site scripting attacks when serving untrusted
1275 repositories. Default is False.
1279 repositories. Default is False.
1276
1280
1277 ``allow_read``
1281 ``allow_read``
1278 If the user has not already been denied repository access due to
1282 If the user has not already been denied repository access due to
1279 the contents of deny_read, this list determines whether to grant
1283 the contents of deny_read, this list determines whether to grant
1280 repository access to the user. If this list is not empty, and the
1284 repository access to the user. If this list is not empty, and the
1281 user is unauthenticated or not present in the list, then access is
1285 user is unauthenticated or not present in the list, then access is
1282 denied for the user. If the list is empty or not set, then access
1286 denied for the user. If the list is empty or not set, then access
1283 is permitted to all users by default. Setting allow_read to the
1287 is permitted to all users by default. Setting allow_read to the
1284 special value ``*`` is equivalent to it not being set (i.e. access
1288 special value ``*`` is equivalent to it not being set (i.e. access
1285 is permitted to all users). The contents of the allow_read list are
1289 is permitted to all users). The contents of the allow_read list are
1286 examined after the deny_read list.
1290 examined after the deny_read list.
1287
1291
1288 ``allowzip``
1292 ``allowzip``
1289 (DEPRECATED) Whether to allow .zip downloading of repository
1293 (DEPRECATED) Whether to allow .zip downloading of repository
1290 revisions. Default is False. This feature creates temporary files.
1294 revisions. Default is False. This feature creates temporary files.
1291
1295
1292 ``baseurl``
1296 ``baseurl``
1293 Base URL to use when publishing URLs in other locations, so
1297 Base URL to use when publishing URLs in other locations, so
1294 third-party tools like email notification hooks can construct
1298 third-party tools like email notification hooks can construct
1295 URLs. Example: ``http://hgserver/repos/``.
1299 URLs. Example: ``http://hgserver/repos/``.
1296
1300
1297 ``cacerts``
1301 ``cacerts``
1298 Path to file containing a list of PEM encoded certificate
1302 Path to file containing a list of PEM encoded certificate
1299 authority certificates. Environment variables and ``~user``
1303 authority certificates. Environment variables and ``~user``
1300 constructs are expanded in the filename. If specified on the
1304 constructs are expanded in the filename. If specified on the
1301 client, then it will verify the identity of remote HTTPS servers
1305 client, then it will verify the identity of remote HTTPS servers
1302 with these certificates.
1306 with these certificates.
1303
1307
1304 This feature is only supported when using Python 2.6 or later. If you wish
1308 This feature is only supported when using Python 2.6 or later. If you wish
1305 to use it with earlier versions of Python, install the backported
1309 to use it with earlier versions of Python, install the backported
1306 version of the ssl library that is available from
1310 version of the ssl library that is available from
1307 ``http://pypi.python.org``.
1311 ``http://pypi.python.org``.
1308
1312
1309 To disable SSL verification temporarily, specify ``--insecure`` from
1313 To disable SSL verification temporarily, specify ``--insecure`` from
1310 command line.
1314 command line.
1311
1315
1312 You can use OpenSSL's CA certificate file if your platform has
1316 You can use OpenSSL's CA certificate file if your platform has
1313 one. On most Linux systems this will be
1317 one. On most Linux systems this will be
1314 ``/etc/ssl/certs/ca-certificates.crt``. Otherwise you will have to
1318 ``/etc/ssl/certs/ca-certificates.crt``. Otherwise you will have to
1315 generate this file manually. The form must be as follows::
1319 generate this file manually. The form must be as follows::
1316
1320
1317 -----BEGIN CERTIFICATE-----
1321 -----BEGIN CERTIFICATE-----
1318 ... (certificate in base64 PEM encoding) ...
1322 ... (certificate in base64 PEM encoding) ...
1319 -----END CERTIFICATE-----
1323 -----END CERTIFICATE-----
1320 -----BEGIN CERTIFICATE-----
1324 -----BEGIN CERTIFICATE-----
1321 ... (certificate in base64 PEM encoding) ...
1325 ... (certificate in base64 PEM encoding) ...
1322 -----END CERTIFICATE-----
1326 -----END CERTIFICATE-----
1323
1327
1324 ``cache``
1328 ``cache``
1325 Whether to support caching in hgweb. Defaults to True.
1329 Whether to support caching in hgweb. Defaults to True.
1326
1330
1327 ``contact``
1331 ``contact``
1328 Name or email address of the person in charge of the repository.
1332 Name or email address of the person in charge of the repository.
1329 Defaults to ui.username or ``$EMAIL`` or "unknown" if unset or empty.
1333 Defaults to ui.username or ``$EMAIL`` or "unknown" if unset or empty.
1330
1334
1331 ``deny_push``
1335 ``deny_push``
1332 Whether to deny pushing to the repository. If empty or not set,
1336 Whether to deny pushing to the repository. If empty or not set,
1333 push is not denied. If the special value ``*``, all remote users are
1337 push is not denied. If the special value ``*``, all remote users are
1334 denied push. Otherwise, unauthenticated users are all denied, and
1338 denied push. Otherwise, unauthenticated users are all denied, and
1335 any authenticated user name present in this list is also denied. The
1339 any authenticated user name present in this list is also denied. The
1336 contents of the deny_push list are examined before the allow_push list.
1340 contents of the deny_push list are examined before the allow_push list.
1337
1341
1338 ``deny_read``
1342 ``deny_read``
1339 Whether to deny reading/viewing of the repository. If this list is
1343 Whether to deny reading/viewing of the repository. If this list is
1340 not empty, unauthenticated users are all denied, and any
1344 not empty, unauthenticated users are all denied, and any
1341 authenticated user name present in this list is also denied access to
1345 authenticated user name present in this list is also denied access to
1342 the repository. If set to the special value ``*``, all remote users
1346 the repository. If set to the special value ``*``, all remote users
1343 are denied access (rarely needed ;). If deny_read is empty or not set,
1347 are denied access (rarely needed ;). If deny_read is empty or not set,
1344 the determination of repository access depends on the presence and
1348 the determination of repository access depends on the presence and
1345 content of the allow_read list (see description). If both
1349 content of the allow_read list (see description). If both
1346 deny_read and allow_read are empty or not set, then access is
1350 deny_read and allow_read are empty or not set, then access is
1347 permitted to all users by default. If the repository is being
1351 permitted to all users by default. If the repository is being
1348 served via hgwebdir, denied users will not be able to see it in
1352 served via hgwebdir, denied users will not be able to see it in
1349 the list of repositories. The contents of the deny_read list have
1353 the list of repositories. The contents of the deny_read list have
1350 priority over (are examined before) the contents of the allow_read
1354 priority over (are examined before) the contents of the allow_read
1351 list.
1355 list.
1352
1356
1353 ``descend``
1357 ``descend``
1354 hgwebdir indexes will not descend into subdirectories. Only repositories
1358 hgwebdir indexes will not descend into subdirectories. Only repositories
1355 directly in the current path will be shown (other repositories are still
1359 directly in the current path will be shown (other repositories are still
1356 available from the index corresponding to their containing path).
1360 available from the index corresponding to their containing path).
1357
1361
1358 ``description``
1362 ``description``
1359 Textual description of the repository's purpose or contents.
1363 Textual description of the repository's purpose or contents.
1360 Default is "unknown".
1364 Default is "unknown".
1361
1365
1362 ``encoding``
1366 ``encoding``
1363 Character encoding name. Default is the current locale charset.
1367 Character encoding name. Default is the current locale charset.
1364 Example: "UTF-8"
1368 Example: "UTF-8"
1365
1369
1366 ``errorlog``
1370 ``errorlog``
1367 Where to output the error log. Default is stderr.
1371 Where to output the error log. Default is stderr.
1368
1372
1369 ``hidden``
1373 ``hidden``
1370 Whether to hide the repository in the hgwebdir index.
1374 Whether to hide the repository in the hgwebdir index.
1371 Default is False.
1375 Default is False.
1372
1376
1373 ``ipv6``
1377 ``ipv6``
1374 Whether to use IPv6. Default is False.
1378 Whether to use IPv6. Default is False.
1375
1379
1376 ``logoimg``
1380 ``logoimg``
1377 File name of the logo image that some templates display on each page.
1381 File name of the logo image that some templates display on each page.
1378 The file name is relative to ``staticurl``. That is, the full path to
1382 The file name is relative to ``staticurl``. That is, the full path to
1379 the logo image is "staticurl/logoimg".
1383 the logo image is "staticurl/logoimg".
1380 If unset, ``hglogo.png`` will be used.
1384 If unset, ``hglogo.png`` will be used.
1381
1385
1382 ``logourl``
1386 ``logourl``
1383 Base URL to use for logos. If unset, ``http://mercurial.selenic.com/``
1387 Base URL to use for logos. If unset, ``http://mercurial.selenic.com/``
1384 will be used.
1388 will be used.
1385
1389
1386 ``name``
1390 ``name``
1387 Repository name to use in the web interface. Default is current
1391 Repository name to use in the web interface. Default is current
1388 working directory.
1392 working directory.
1389
1393
1390 ``maxchanges``
1394 ``maxchanges``
1391 Maximum number of changes to list on the changelog. Default is 10.
1395 Maximum number of changes to list on the changelog. Default is 10.
1392
1396
1393 ``maxfiles``
1397 ``maxfiles``
1394 Maximum number of files to list per changeset. Default is 10.
1398 Maximum number of files to list per changeset. Default is 10.
1395
1399
1396 ``port``
1400 ``port``
1397 Port to listen on. Default is 8000.
1401 Port to listen on. Default is 8000.
1398
1402
1399 ``prefix``
1403 ``prefix``
1400 Prefix path to serve from. Default is '' (server root).
1404 Prefix path to serve from. Default is '' (server root).
1401
1405
1402 ``push_ssl``
1406 ``push_ssl``
1403 Whether to require that inbound pushes be transported over SSL to
1407 Whether to require that inbound pushes be transported over SSL to
1404 prevent password sniffing. Default is True.
1408 prevent password sniffing. Default is True.
1405
1409
1406 ``staticurl``
1410 ``staticurl``
1407 Base URL to use for static files. If unset, static files (e.g. the
1411 Base URL to use for static files. If unset, static files (e.g. the
1408 hgicon.png favicon) will be served by the CGI script itself. Use
1412 hgicon.png favicon) will be served by the CGI script itself. Use
1409 this setting to serve them directly with the HTTP server.
1413 this setting to serve them directly with the HTTP server.
1410 Example: ``http://hgserver/static/``.
1414 Example: ``http://hgserver/static/``.
1411
1415
1412 ``stripes``
1416 ``stripes``
1413 How many lines a "zebra stripe" should span in multiline output.
1417 How many lines a "zebra stripe" should span in multiline output.
1414 Default is 1; set to 0 to disable.
1418 Default is 1; set to 0 to disable.
1415
1419
1416 ``style``
1420 ``style``
1417 Which template map style to use.
1421 Which template map style to use.
1418
1422
1419 ``templates``
1423 ``templates``
1420 Where to find the HTML templates. Default is install path.
1424 Where to find the HTML templates. Default is install path.
General Comments 0
You need to be logged in to leave comments. Login now