Comments
Patch
@@ -665,7 +665,7 @@ def rebase(ui, repo, **opts):
Configuration Options:
You can make rebase require a destination if you set the following config
- option:
+ option::
[commands]
rebase.requiredest = True
@@ -20,12 +20,12 @@ To ignore global commands like :hg:`vers
to specify them in your user configuration file.
To control whether the pager is used at all for an individual command,
-you can use --pager=<value>::
+you can use --pager=<value>:
- use as needed: `auto`.
- require the pager: `yes` or `on`.
- suppress the pager: `no` or `off` (any unrecognized value
- will also work).
+ will also work).
To globally turn off all attempts to use a pager, set::
@@ -109,10 +109,10 @@ These are the supported infix operators:
[revsetalias]
issue(a1) = grep(r'\bissue[ :]?' ## a1 ## r'\b|\bbug\(' ## a1 ## r'\)')
- ``issue(1234)`` is equivalent to
- ``grep(r'\bissue[ :]?1234\b|\bbug\(1234\)')``
- in this case. This matches against all of "issue 1234", "issue:1234",
- "issue1234" and "bug(1234)".
+ ``issue(1234)`` is equivalent to
+ ``grep(r'\bissue[ :]?1234\b|\bbug\(1234\)')``
+ in this case. This matches against all of "issue 1234", "issue:1234",
+ "issue1234" and "bug(1234)".
There is a single postfix operator:
@@ -132,9 +132,8 @@ Matching is case-sensitive, unless other
insensitive match on a case-sensitive predicate, use a regular expression,
prefixed with ``(?i)``.
- For example::
-
- ``tag(r're:(?i)release')`` matches "release" or "RELEASE" or "Release", etc
+For example, ``tag(r're:(?i)release')`` matches "release" or "RELEASE"
+or "Release", etc
Predicates
==========