##// END OF EJS Templates
revset: document the regular expression support for tag(name)...
Matt Harbison -
r20824:c57c9cec stable
parent child Browse files
Show More
@@ -1500,6 +1500,10 b' def _substringmatcher(pattern):'
1500 def tag(repo, subset, x):
1500 def tag(repo, subset, x):
1501 """``tag([name])``
1501 """``tag([name])``
1502 The specified tag by name, or all tagged revisions if no name is given.
1502 The specified tag by name, or all tagged revisions if no name is given.
1503
1504 If `name` starts with `re:`, the remainder of the name is treated as
1505 a regular expression. To match a tag that actually starts with `re:`,
1506 use the prefix `literal:`.
1503 """
1507 """
1504 # i18n: "tag" is a keyword
1508 # i18n: "tag" is a keyword
1505 args = getargs(x, 0, 1, _("tag takes one or no arguments"))
1509 args = getargs(x, 0, 1, _("tag takes one or no arguments"))
General Comments 0
You need to be logged in to leave comments. Login now